summaryrefslogtreecommitdiff
path: root/scripts/pugixml.pc.in
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2018-04-09 13:48:53 -0400
committerArseny Kapoulkine <arseny.kapoulkine@gmail.com>2018-04-09 10:48:53 -0700
commitdaeb8013b20f9c47e85730faaa4131064a1f9c2e (patch)
tree4dd2930e68497c4111f5440b2a32751fb871e317 /scripts/pugixml.pc.in
parent341cea5a325bb6d0548a3cb4189362b34cf1caf4 (diff)
cmake: always install the pkg-config file (#193)
There's really never a reason to *not* want this installed. If an option is needed to specify installing in a versioned subdirectory, this option should be explicitly described rather than hidden in something else. As an added bonus, this makes the CMake install code slightly *less* complicated.
Diffstat (limited to 'scripts/pugixml.pc.in')
-rw-r--r--scripts/pugixml.pc.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/pugixml.pc.in b/scripts/pugixml.pc.in
index 3c97c28..804c4d3 100644
--- a/scripts/pugixml.pc.in
+++ b/scripts/pugixml.pc.in
@@ -1,11 +1,11 @@
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=${prefix}
-includedir=${prefix}/include/pugixml-@PUGIXML_VERSION_STRING@
-libdir=${exec_prefix}/lib/pugixml-@PUGIXML_VERSION_STRING@
+includedir=${prefix}/include@INSTALL_SUFFIX@
+libdir=${exec_prefix}/lib@INSTALL_SUFFIX@
Name: pugixml
Description: Light-weight, simple and fast XML parser for C++ with XPath support.
URL: http://pugixml.org/
Version: @PUGIXML_VERSION_STRING@
Cflags: -I${includedir}
-Libs: -L${libdir} -lpugixml \ No newline at end of file
+Libs: -L${libdir} -lpugixml