mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-10 23:20:58 +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.
11 lines
427 B
Bash
11 lines
427 B
Bash
#!/bin/sh
|
|
./configure --disable-test-compare-images --enable-external-libs --enable-werror --with-windows-wordsize=64 --with-buildrules=mingw \
|
|
CC=x86_64-w64-mingw32-gcc \
|
|
CXX=x86_64-w64-mingw32-g++ \
|
|
LD=x86_64-w64-mingw32-ld \
|
|
AR=x86_64-w64-mingw32-ar \
|
|
RANLIB=x86_64-w64-mingw32-ranlib \
|
|
DLLTOOL=x86_64-w64-mingw32-dlltool \
|
|
STRIP=x86_64-w64-mingw32-strip \
|
|
OBJDUMP=x86_64-w64-mingw32-objdump
|