C++ app template.
- C++23 compiler and standard library
- Exception support
- Run-time type information (RTTI)
app-template 1 2The app prints the sum of the two arguments.
cmake -B build
cmake --build buildcmake --install build --prefix /tmp/rootIf no prefix is specified, CMake installs to /usr/local by default on Unix systems.
Run all tests:
cmake --build build --target test