CMake
Version vom 5. August 2023, 07:28 Uhr von Hamatoma (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „= Links = = Installation = <syntaxhighlight lang="bash"> apt install cmake </syntaxhighlight> = Projekt starten = <syntaxhighlight lang="bash"> cd /path/to/p…“)
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