couch/cmake-builds.sh

19 lines
209 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2021-03-16 13:33:49 -05:00
cd `dirname $0`
mkdir -p build
cd build
2021-01-15 20:33:25 -06:00
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"