aboutsummaryrefslogtreecommitdiff
path: root/scripts/pugixml.pc.in
AgeCommit message (Collapse)AuthorFilesLines
2024-03-22Update pugixml.pc.inMiloš Komarčević1-2/+2
2020-07-15Fix debug postfix in pkgconfig fileWolfgang Stöggl1-1/+1
In case of USE_POSTFIX, the POSTFIX is dependent on the CMAKE_BUILD_TYPE. Use the correct POSTFIX also in the generated pugixml.pc file. This results in the following contents of pugixml.pc: - Release: Libs: -L${libdir} -lpugixml - RelWithDebInfo Libs: -L${libdir} -lpugixml_r - MinSizeRel: Libs: -L${libdir} -lpugixml_m - Debug: Libs: -L${libdir} -lpugixml_d
2018-12-10pkg-config: Use CMake GnuInstallDirs FULL varsMillian Poquet1-2/+2
Fixes an installation problem in Nix packages, as non-FULL variables are already absolute paths in this case.
2018-11-12Update URL to https in pugixml.pc.inWolfgang Stöggl1-1/+1
2018-06-26Use CMAKE_INSTALL_LIBDIR for pugixml.pc (#215)Wolfgang Stöggl1-1/+1
- Up to now, the libdir was hardcoded to "lib" inside pugixml.pc and the install directory of pugixml.pc was "lib/pkgconfig" - Adds support for lib and lib64 by using CMAKE_INSTALL_LIBDIR variable
2018-06-20fix cmake warning "Policy CMP0048 is not set" (#214)Bernd Amend1-1/+1
This also bumps the minimum CMake version to 3.0 (from 2.8.12).
2018-04-09cmake: always install the pkg-config file (#193)Eli Schwartz1-3/+3
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.
2016-09-20CMake: Simplify pkg-config supportArseny Kapoulkine1-0/+11
Merge USEOWNSUBDIR and PKGCONFIG build flags; move the pkg-config source file to scripts/.