mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-10 15:20:54 +00:00
c833295a39
Update the build to support new external-libs layout, and autoconf options to specify windows word size. Split make_windows_releases into multiple scripts.
28 lines
549 B
Bash
Executable File
28 lines
549 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
|
|
|
|
set -e
|
|
set -x
|
|
cwd=`pwd`
|
|
PATH=$cwd/libqpdf/build:$PATH
|
|
|
|
rm -rf install-mingw* install-msvc*
|
|
|
|
./config-mingw64
|
|
make check install
|
|
make distclean
|
|
./config-mingw32
|
|
make check install
|
|
make distclean
|
|
|
|
set +x
|
|
|
|
echo ''
|
|
echo 'Now run "./make_windows_releases-msvc 64" in a 64-bit MSVC environment'
|
|
echo 'and "./make_windows_releases-msvc 32" in a 32-bit MSVC environment.'
|
|
echo 'Then run "./make_windows_releases-msvc-finish".'
|
|
echo ''
|