-
-
Notifications
You must be signed in to change notification settings - Fork 1
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 ..
makeYou can also build for Debugging:
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
make