Skip to content

Instantly share code, notes, and snippets.

View ericzhng's full-sized avatar
🌝
Focusing

HUI ZHANG ericzhng

🌝
Focusing
  • U-M Aerospace Department
View GitHub Profile
@ericzhng
ericzhng / CMakeLists.txt
Last active April 22, 2022 01:17
An example CMake Visual Studio Project. Both user and software (find_package) can decide on using certain 3rd party external library. Add USE_XXX as macro in either CMakeLists.txt and C/C++ programs.
# CMakeList.txt : CMake project for test_cmake, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
project ("test_cmake")
# Find OpenMP package
find_package(OpenMP)
@ericzhng
ericzhng / README-Template.md
Created December 11, 2018 23:24 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites