Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 783 Bytes

README.md

File metadata and controls

72 lines (48 loc) · 783 Bytes

Radar

Simulation definition stored into assets/game.rdr

Windows

Needs:

  • Git
  • CMake (>= 3.19)
  • MSVC Build tools

Command must be callables in relative path (eg. cmake, git, ...)

Build

cmake -DCMAKE_BUILD_TYPE=Release -B dist -S .
cmake --build dist

Launch

cd dist\bin
radar.exe

Mac OS

Needs:

  • Brew
  • CMake (>= 3.19)

Build

brew install csfml
cmake -DCMAKE_BUILD_TYPE=Release -B dist -S .
cmake --build dist

Launch

cd dist/bin
./radar

Linux

Needs:

  • Build essentials
  • CSFML package (sudo apt install libcsfml-dev / sudo dnf install CSFML)

Build

cmake -DCMAKE_BUILD_TYPE=Release -B dist -S .
cmake --build dist

Launch

cd dist/bin
./radar