git repos / PlatformFolders

compile_test.sh

browsing at commit = f308f41e93ccd35722fb9d6ec520799d95395f54

tags: 2.1

raw · blame · history

#! /bin/bash
set -e
#This script will attempt to compile with C++11, cross compile to windows with C++11, cross compile to windows with C++03, compile with C++03
make clean
make TESTCPP11=1
make clean
make CROSS=i686-pc-mingw32- TESTCPP11=1
make clean
make CROSS=i686-pc-mingw32-
mv platform_folders.out platform_folders.exe
make clean
make