A full build has different steps:
- Install dependences
- Configure the build
- Build the project
- Editing & git directives
Install commands (Linux)
Install commands (Linux)
Install commands (Linux)
Install commands (Linux)
Install commands (Linux)
Install commands (Linux)
To configure the project, use cmake
or cmake-gui
.
TODO
Open the GUI in the project root folder:
cmake-gui .
Set the build directory to out
, disable warnings-as-errors and generate. For further debugging set the sanitizers, same goes for optimization.
Build the project for all targets:
cmake --build out/build/unixlike-clang-debug/
or
TODO
TODO