ChonkyStation/zep/config.sh
2022-07-07 16:42:31 +02:00

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 ../