couch/cmake-builds.sh
2021-01-15 20:33:25 -06:00

18 lines
193 B
Bash
Executable File

#!/bin/bash
set -e
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
make
cd ..
mkdir -p build-win/
cd build-win
x86_64-w64-mingw32-cmake ..
make
cd ..
echo "All builds successful"