1
0
mirror of synced 2024-12-22 04:30:01 +01:00
2024-11-07 14:42:03 +00:00
..
2020-08-03 18:16:52 -04:00
2022-06-02 14:30:14 -04:00
2020-08-03 18:16:52 -04:00
2020-08-03 18:16:52 -04:00
2021-06-24 12:06:36 -04:00
2019-08-07 05:06:55 +00:00
2024-11-07 14:42:03 +00:00
2023-03-15 13:34:02 -04:00

This is an example project using CMake.

The requirements are:

  • CMake 3.11 or better; 3.14+ highly recommended.
  • A C++17 compatible compiler
  • The Boost libararies (header only part is fine)
  • Git
  • Doxygen (optional)

To configure:

cmake -S . -B build

Add -GNinja if you have Ninja.

To build:

cmake --build build

To test (--target can be written as -t in CMake 3.15+):

cmake --build build --target test

To build docs (requires Doxygen, output in build/docs/html):

cmake --build build --target docs

To use an IDE, such as Xcode:

cmake -S . -B xbuild -GXcode
cmake --open xbuild

The CMakeLists show off several useful design patterns for CMake.