Skip to content
Snippets Groups Projects
Select Git revision
  • c7bddda19e9b279eba1f7f31f6efd7d3a99216ef
  • main default protected
  • leveleditor
  • david-author
  • clang-tidy-cleanup
  • architecture-refactoring
  • cleanUpMenus
  • doxygen-cleanup
  • project-structure-refactoring
  • interpolation
  • buildingFeatures
  • win_end_screen
  • helpMenu
  • leveleditor-placement
  • text-rendering
  • updated_unit_contextmenu
  • level-from-commandline
  • unit_contextmenu
  • player
  • engine-scaling
  • clang-tidy
21 results

cpp-project

Name Last commit Last update
cmake
protocols
src
.gitignore
CMakeLists.txt
README.md

Advanced Wars

Build-Anleitung

Linux/MacOS

  1. Repository klonen:

    git clone https://github.com/username/project.git
    cd project
  2. Build-Verzeichnis erstellen:

    mkdir build && cd build
  3. CMake konfigurieren und Build ausführen:

    cmake ..
    cmake --build .

Windows

  1. Repository klonen:

    git clone https://github.com/username/project.git
    cd project
  2. Build-Verzeichnis erstellen:

    mkdir build
    cd build
  3. CMake konfigurieren und Build ausführen:

    cmake ..
    cmake --build . --config Release

Visual Studio

  1. Repository klonen
  2. Visual Studio öffnen
  3. "Ordner öffnen" wählen und zum Projektverzeichnis navigieren
  4. Visual Studio erkennt automatisch das CMake-Projekt
  5. Build über "Build All" ausführen

Build-Optionen

CMake kann mit verschiedenen Optionen konfiguriert werden:

cmake .. -DCMAKE_BUILD_TYPE=Release    # Release-Build
cmake .. -DCMAKE_BUILD_TYPE=Debug      # Debug-Build