Added a quick script to build all the platforms

This commit is contained in:
Dane Johnson 2021-01-15 14:49:49 -06:00
parent 353dd07704
commit db160c2de4

17
cmake-builds.sh Executable file
View File

@ -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"