From 384d384d1b84142a23785c6c423064a29342f532 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 16 May 2014 07:26:08 -0700 Subject: Add test scripts for Windows (VC++, MinGW) --- test/windows/mingw/build | 66 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100755 test/windows/mingw/build (limited to 'test/windows/mingw/build') diff --git a/test/windows/mingw/build b/test/windows/mingw/build new file mode 100755 index 0000000..f0c09de --- /dev/null +++ b/test/windows/mingw/build @@ -0,0 +1,66 @@ +#! /usr/bin/env bash + +# Build libstudxml for MinGW +# +# -rebuild +# -test +# +trap 'exit 1' ERR + +function error () +{ + echo "$*" 1>&2 +} + +function clean () +{ + if [ -f $1/Makefile ]; then + make -C $1 distclean + fi +} + +LDFLAGS="-Wl,--enable-auto-import" + +test=n +rebuild=n + +while [ $# -gt 0 ]; do + case $1 in + -rebuild) + rebuild=y + shift + ;; + -test) + test=y + shift + ;; + *) + error "unknown option: $1" + exit 1 + ;; + esac +done + +# Clean everything up if we are rebuilding. +# +if [ $rebuild = y ]; then + clean libstudxml +fi + +# Build. +# +cd libstudxml + +if [ $rebuild = y -o ! -f Makefile ]; then + ./configure LDFLAGS="$LDFLAGS" DIFFFLAGS=-ubB +fi + +make + +# Test. +# +if [ $test = y ]; then + make check +fi + +cd .. -- cgit v1.1