summaryrefslogtreecommitdiffstats
path: root/make_windows_releases
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-06-21 20:06:54 +0200
committerJay Berkenbilt <ejb@ql.org>2012-06-22 03:22:35 +0200
commitc833295a3948e914fa23042896f19f35ddd8d927 (patch)
treed2c135487757ad8ad917242e8e6c42097a016fd4 /make_windows_releases
parent85d9e7dfed31cf4b9307fad920422a7b433fc35c (diff)
downloadqpdf-c833295a3948e914fa23042896f19f35ddd8d927.tar.zst
Adjust Windows built to support 32-bit and 64-bit builds
Update the build to support new external-libs layout, and autoconf options to specify windows word size. Split make_windows_releases into multiple scripts.
Diffstat (limited to 'make_windows_releases')
-rwxr-xr-xmake_windows_releases26
1 files changed, 8 insertions, 18 deletions
diff --git a/make_windows_releases b/make_windows_releases
index 0518622a..77b3d863 100755
--- a/make_windows_releases
+++ b/make_windows_releases
@@ -9,29 +9,19 @@ set -x
cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH
-rm -rf install-mingw install-msvc
+rm -rf install-mingw* install-msvc*
-./config-mingw
+./config-mingw64
make check install
make distclean
-./config-msvc
+./config-mingw32
make check install
make distclean
-cd install-mingw
-v=`ls -d qpdf-*`
-cd ..
-
-cp -p README-windows-install.txt install-mingw/$v/README.txt
-cp -p README-windows-install.txt install-msvc/$v/README.txt
-
-cd install-mingw
-zip -r ../$v-bin-mingw.zip $v
-cd ../install-msvc
-zip -r ../$v-bin-msvc.zip $v
-cd ..
-
set +x
-echo ""
-echo "$v-bin-mingw.zip and $v-bin-msvc.zip have been created."
+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 ''