CMake: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Die Seite wurde neu angelegt: „= Links = = Installation = <syntaxhighlight lang="bash"> apt install cmake </syntaxhighlight> = Projekt starten = <syntaxhighlight lang="bash"> cd /path/to/p…“ |
|||
| Zeile 14: | Zeile 14: | ||
= Projekt aktualisieren = | = Projekt aktualisieren = | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
cmake -Dmode=productive -DCMAKE_BUILD_TYPE=Release -S . -B | cmake -Dmode=productive -DCMAKE_BUILD_TYPE=Release -S . -B build | ||
cmake --build build | cmake --build build | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Aktuelle Version vom 5. August 2023, 08:02 Uhr
Links
[Bearbeiten]Installation
[Bearbeiten]apt install cmake
Projekt starten
[Bearbeiten]cd /path/to/project
cmake -H. -Bbuild
Projekt aktualisieren
[Bearbeiten]cmake -Dmode=productive -DCMAKE_BUILD_TYPE=Release -S . -B build
cmake --build build