Skip to content
Snippets Groups Projects
Select Git revision
  • infrasructure-patch-1
  • main default protected
  • must-toolcoverage
  • toolcoverage
  • fortran
  • usertypes
  • tools
  • must-json
  • merged
  • tools-parallel
  • coll
  • rma
  • dtypes
  • p2p
  • infrastructure-patch-3
  • infrastructure-patch2
  • devel-TJ
  • devel-ES
  • instructionblock-lists
  • mbi
20 results

mpi-bugbench

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