LAview.win32-bundle/build32.sh

4 lines
323 B
Bash
Raw Permalink Normal View History

2019-06-03 17:31:48 +03:00
#!/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