mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-10 23:20:58 +00:00
06c6f9a971
That way we can always ensure that the right compiler flags are being used if there is an issue.
47 lines
1.1 KiB
Bash
Executable File
47 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd $(dirname $0)/..
|
|
wordsize=$1
|
|
tool=$2
|
|
|
|
declare -a cmake_xargs
|
|
declare -a ctest_xargs
|
|
if [[ $tool == mingw ]]; then
|
|
pacman -Sy --noconfirm make base-devel tar zip unzip
|
|
if [ ! -x /c/msys64/mingw$wordsize/bin/g++.exe ]; then
|
|
if [[ $wordsize == 64 ]]; then
|
|
pacman -Sy --noconfirm mingw-w64-x86_64-toolchain
|
|
else
|
|
pacman -Sy --noconfirm mingw-w64-i686-toolchain
|
|
fi
|
|
fi
|
|
PATH="/c/msys64/mingw$wordsize/bin:$PATH"
|
|
config=RelWithDebInfo
|
|
cmake_xargs=(-- -k)
|
|
g++ -v
|
|
elif [[ $tool == msvc ]]; then
|
|
cl
|
|
config=Release
|
|
cmake_xargs=(--config $config)
|
|
ctest_xargs=(-C $config)
|
|
fi
|
|
|
|
mkdir build distribution
|
|
unzip doc.zip
|
|
unzip qpdf-external-libs-bin.zip
|
|
|
|
cd build
|
|
../cmake-win $tool ci
|
|
cmake --build . --verbose -j$(nproc) "${cmake_xargs[@]}"
|
|
ctest --verbose "${ctest_xargs[@]}"
|
|
cpack -G NSIS -C $config
|
|
cpack -G ZIP -C $config
|
|
for i in qpdf-*.exe; do
|
|
mv $i ../distribution/$(echo $i | sed -e 's/.exe/-ci.exe/')
|
|
done
|
|
for i in qpdf-*.zip; do
|
|
mv $i ../distribution/$(echo $i | sed -e 's/.zip/-ci.zip/')
|
|
done
|
|
cd ..
|
|
sha256sum distribution/*
|