2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-01 01:40:51 +00:00
qpdf/pkg-test/test-pkg-config
Jay Berkenbilt f8e97e0ed5 Put spaces around version constraint in pkg-config (fixes #677)
Also add a pkg-config runtime test that would have caught the error.
2022-03-23 10:52:40 -04:00

24 lines
542 B
Bash
Executable File

#!/bin/sh
#
# Test that the installed qpdf development packages enable a qpdf
# application to be build with cmake using qpdf's cmake package
# information. Requires cmake as well as libqpdf development
# dependencies.
#
set -ex
TMP=$1
if [ ! -d "$TMP" ]; then
echo 1>&2 "Usage: $0 tmp-dir"
exit 2
fi
cp pkg-test/qpdf-version.cc $TMP
cd $TMP
pkg-config libqpdf --modversion
pkg-config libqpdf --libs --static
g++ qpdf-version.cc -o qpdf-version \
$(pkg-config libqpdf --cflags) \
$(pkg-config libqpdf --libs)
./qpdf-version