From 5a551f38f59182285ac2efa32125b8f5d6592074 Mon Sep 17 00:00:00 2001 From: Simon Sobisch Date: Tue, 1 Oct 2019 23:32:20 +0200 Subject: [PATCH] appveyor with more build options and binaries #280 --- .appveyor_msys_build.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.appveyor_msys_build.sh b/.appveyor_msys_build.sh index c6d0863eb..5595fd578 100644 --- a/.appveyor_msys_build.sh +++ b/.appveyor_msys_build.sh @@ -9,12 +9,14 @@ case "$LIBRARY" in "shared") CONFIGURE_FLAGS="--disable-static --enable-shared";; esac case "$FEATURE" in - *GMP*) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-gmpcompat";; - MODE="$MODE-gmp";; + *GMP*) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-gmpcompat" + MODE="$MODE-gmp" + ;; esac case "$FEATURE" in *CXX*) CONFIGURE_FLAGS="$CONFIGURE_FLAGS --enable-cxx" - MODE="$MODE-cxx";; + MODE="$MODE-cxx" + ;; esac echo && echo build: ./configure ABI=$ABI $CONFIGURE_FLAGS