diff --git a/cmake-builds.sh b/cmake-builds.sh new file mode 100755 index 0000000..05282fe --- /dev/null +++ b/cmake-builds.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +set -e + +mkdir -p build +cd build +cmake .. +make +cd .. + +mkdir -p build-win/ +cd build-win +x86_64-w64-mingw32-cmake .. +make +cd .. + +echo "All builds successful"