Tiny CMake template repository used for various C/CPP projects
Based on the course example and some more advanced project
The ability to create copy-pasted projects for the Advanced-CPP course and personal pet-repos.
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).