mirror of
https://github.com/qpdf/qpdf.git
synced 2024-10-31 19:02:30 +00:00
23 lines
302 B
Bash
Executable File
23 lines
302 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
|
|
|
|
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
|
|
make check install
|
|
make distclean
|