CMake
Links
Installation
apt install cmake
Projekt starten
cd /path/to/project
cmake -H. -Bbuild
Projekt aktualisieren
cmake -Dmode=productive -DCMAKE_BUILD_TYPE=Release -S . -B $BASE_BUILD
cmake --build build.release
apt install cmake
cd /path/to/project
cmake -H. -Bbuild
cmake -Dmode=productive -DCMAKE_BUILD_TYPE=Release -S . -B $BASE_BUILD
cmake --build build.release