build{32,64}.sh added

This commit is contained in:
Kolan Sh 2019-06-03 17:31:48 +03:00
parent d35d5a6846
commit 70786bdd16
2 changed files with 6 additions and 0 deletions

3
build32.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
for d in cairo-chart gobject-plugin latex-struct core data-example object-example stand_config control_point desktop table_meas; do cd $d && mkdir -p build-mingw32 && cd build-mingw32 && rm -rf * && cmake -G "MSYS Makefiles" .. -DCMAKE_BUILD_TYPE=Release && make && cpack && ./*.exe && cd ../.. || break; done

3
build64.sh Normal file
View File

@ -0,0 +1,3 @@
#!/bin/bash
for d in cairo-chart gobject-plugin latex-struct core data-example object-example stand_config control_point desktop table_meas; do cd $d && mkdir -p build-mingw64 && cd build-mingw64 && rm -rf * && cmake -G "MSYS Makefiles" .. -DCMAKE_BUILD_TYPE=Release && make && cpack && ./*.exe && cd ../.. || break; done