2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-19 10:22:22 +00:00
qpdf/make_windows_releases-msvc

23 lines
302 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ ! -d external-libs ]; then
echo "Please extract qpdf-external-libs-bin.zip and try again"
exit 2
fi
w=$1
if [ "$w" = "" ]; then
echo "Usage: $0 {32|64}"
exit 2
fi
set -e
set -x
cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH
./config-msvc $w
2016-01-24 20:51:21 +00:00
make
make check install
make distclean