Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 453 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 453 Bytes

cmake-cpp-template

This project is aimed at jump-starting a C++ project that can build libraries, binaries and have a working unit test suite. When built, the project produces a static library, a command line binary, and a unit test.

Cloning this project:

git clone https://github.com/Leonard-Reuter/cmake-cpp-template.git

Building this project and running the tests:

cd cmake-cpp-template
mkdir build
cd build
cmake ..
make
ctest