mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-19 19:05:09 +00:00
a11081085b
Make --enable-werror work properly on msvc, handle extra warnings flags for msvc in configure.ac instead of hardcoding into make/msvc.mk, separate warnings flags into WFLAGS in autoconf.mk to avoid duplication and to make it easier to override.
12 lines
384 B
Bash
Executable File
12 lines
384 B
Bash
Executable File
#!/bin/sh
|
|
wordsize=$1
|
|
if ! test "$wordsize" = "32" -o "$wordsize" = "64"; then
|
|
echo "Usage: $0 {32,64}"
|
|
exit 2
|
|
fi
|
|
objdump=
|
|
if test "$wordsize" = "64"; then
|
|
objdump=OBJDUMP=x86_64-w64-mingw32-objdump
|
|
fi
|
|
CC=cl CXX="cl -TP -GR" ./configure --disable-test-compare-images --enable-external-libs --enable-werror --with-windows-wordsize=$wordsize --with-buildrules=msvc $objdump
|