Skip to content

Building Examples

Phil Schatzmann edited this page Nov 8, 2025 · 4 revisions

This project can be built (and debugged) on the desktop using CMake. A regular build is done with:

mkdir build
cd build
cmake ..
make

You can also build for Debugging:

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make
Clone this wiki locally