Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 353 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 353 Bytes

CMake Skeleton

This serves as an example of how to set up CMake with Boost and Catch.

Project structure:

  • The main executable is main.cpp
  • Headers go in inc
  • Source files go in src
  • Tests go in test

To build and run the project:

mkdir build
cd build
cmake ..
make
bin/run_tests # Run tets
bin/aldente # Run the executable