mirror of
https://github.com/liuk7071/ChonkyStation.git
synced 2025-04-02 10:52:38 -04:00
10 lines
243 B
Bash
10 lines
243 B
Bash
#!/bin/sh
|
|
|
|
mkdir build
|
|
cd build
|
|
if [ "$1" != "" ] ; then
|
|
cmake -G "Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=ON -DCMAKE_BUILD_TYPE=$1 ../
|
|
else
|
|
cmake -G "Unix Makefiles" -DBUILD_QT=ON -DBUILD_IMGUI=ON -DCMAKE_BUILD_TYPE=Release ../
|
|
fi
|
|
cd ../
|