qpdf/make_windows_releases

38 lines
621 B
Bash
Executable File

#!/bin/sh
if [ ! -d external-libs ]; then
echo "Please extract qpdf-external-libs-bin.zip and try again"
exit 2
fi
if echo $PATH | grep -q /mingw64; then
wordsize=64
else
wordsize=32
fi
set -e
set -x
cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH
rm -rf install-mingw$wordsize install-msvc$wordsize
./config-mingw
make -j8
make check install
make distclean
./config-msvc
make -j8
make check install
make distclean
set +x
echo ''
echo "Finished builds for $wordsize. If not done already, rerun this"
echo "in a" `expr 64 - $wordsize` "environment."
echo 'Then run "./make_windows_releases-finish".'
echo ''