Skip to content

Tiny CMake template repository used for various C/CPP projects

License

Notifications You must be signed in to change notification settings

CityAplons/cmake-multiplatform-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cmake-multiplatform-template

Tiny CMake template repository used for various C/CPP projects

Based on the course example and some more advanced project

Motivation

The ability to create copy-pasted projects for the Advanced-CPP course and personal pet-repos.

Building

mkdir -p build && cd build/
cmake -DCMAKE_BUILD_TYPE=Release ../
cmake --build .

You may add a -DMAKE_PACKAGE=<OFF|ON> to disable or enable packages of a project (it's enabled by default).