mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
22 lines
297 B
Plaintext
22 lines
297 B
Plaintext
|
#!/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
|
||
|
make check install
|
||
|
make distclean
|