git-svn-id: svn+q:///qpdf/trunk@895 71b93d88-0707-0410-a8cf-f5a4172ac649
This commit is contained in:
Jay Berkenbilt 2009-10-23 16:58:52 +00:00
parent b1702fb16c
commit 3f1f156e1b
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,10 @@
This file is README-windows-install.txt in the source distribution and
README.txt in the Windows binary distribution.
QPDF is completely relocatable. To use qpdf.exe or the qpdf DLL, just
have the bin directory in your path. To compile with qpdf, just add
the lib directory to your library path and the include directory to
your include path. Detailed documentation may be found in the doc
directory.
Enjoy!

23
make_windows_releases Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
if [ ! -d external-libs ]; then
echo "Please extract qpdf-external-libs-bin.zip and try again"
exit 2
fi
set -e
cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH
./config-mingw
make check install
make distclean
./config-msvc
make check install
make distclean
cp -p README-windows-install.txt install-mingw/README.txt
cp -p README-windows-install.txt install-msvc/README.txt
echo ""
echo "Create qpdf-VERSION-bin-mingw.zip from install-mingw."
echo "Create qpdf-VERSION-bin-msvc.zip from install-msvc."