Commit 3f1f156e1b6a5737e0fa6367eff3d1d8e9c707ec

Authored by Jay Berkenbilt
1 parent b1702fb1

new

git-svn-id: svn+q:///qpdf/trunk@895 71b93d88-0707-0410-a8cf-f5a4172ac649
README-windows-install.txt 0 → 100644
  1 +This file is README-windows-install.txt in the source distribution and
  2 +README.txt in the Windows binary distribution.
  3 +
  4 +QPDF is completely relocatable. To use qpdf.exe or the qpdf DLL, just
  5 +have the bin directory in your path. To compile with qpdf, just add
  6 +the lib directory to your library path and the include directory to
  7 +your include path. Detailed documentation may be found in the doc
  8 +directory.
  9 +
  10 +Enjoy!
make_windows_releases 0 → 100755
  1 +#!/bin/sh
  2 +if [ ! -d external-libs ]; then
  3 + echo "Please extract qpdf-external-libs-bin.zip and try again"
  4 + exit 2
  5 +fi
  6 +
  7 +set -e
  8 +cwd=`pwd`
  9 +PATH=$cwd/libqpdf/build:$PATH
  10 +
  11 +./config-mingw
  12 +make check install
  13 +make distclean
  14 +./config-msvc
  15 +make check install
  16 +make distclean
  17 +
  18 +cp -p README-windows-install.txt install-mingw/README.txt
  19 +cp -p README-windows-install.txt install-msvc/README.txt
  20 +
  21 +echo ""
  22 +echo "Create qpdf-VERSION-bin-mingw.zip from install-mingw."
  23 +echo "Create qpdf-VERSION-bin-msvc.zip from install-msvc."