mirror of
https://github.com/cxong/cdogs-sdl.git
synced 2025-07-22 15:10:33 +02:00
14 lines
241 B
Bash
Executable File
14 lines
241 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# To create a debug build, run `cmake -D CMAKE_BUILD_TYPE=Debug .` instead
|
|
|
|
if command -v ninja > /dev/null 2>&1; then
|
|
echo "Build using Ninja"
|
|
cmake -GNinja .
|
|
ninja
|
|
else
|
|
echo "Build using default makefiles"
|
|
cmake .
|
|
make
|
|
fi
|