aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorWolfgang Stöggl <c72578@yahoo.de>2020-07-15 21:59:05 +0200
committerWolfgang Stöggl <c72578@yahoo.de>2020-07-15 21:59:05 +0200
commit8b074b171f6d9ff74168bece825bbe18930e6ee0 (patch)
tree76b46dc9b431cfdf45b4f37b8a9d92d30f020b38 /CMakeLists.txt
parentd58115e581f8cd8ca3e661182425d9e22941b7c3 (diff)
downloadpugixml-8b074b171f6d9ff74168bece825bbe18930e6ee0.zip
pugixml-8b074b171f6d9ff74168bece825bbe18930e6ee0.tar.gz
pugixml-8b074b171f6d9ff74168bece825bbe18930e6ee0.tar.bz2
Fix debug postfix in pkgconfig file
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
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 06e7662..fda789c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -142,6 +142,16 @@ write_basic_package_version_file(
"${PROJECT_BINARY_DIR}/pugixml-config-version.cmake"
COMPATIBILITY SameMajorVersion)
+if (USE_POSTFIX)
+ if(CMAKE_BUILD_TYPE MATCHES RelWithDebInfo)
+ set(LIB_POSTFIX ${CMAKE_RELWITHDEBINFO_POSTFIX})
+ elseif(CMAKE_BUILD_TYPE MATCHES MinSizeRel)
+ set(LIB_POSTFIX ${CMAKE_MINSIZEREL_POSTFIX})
+ elseif(CMAKE_BUILD_TYPE MATCHES Debug)
+ set(LIB_POSTFIX ${CMAKE_DEBUG_POSTFIX})
+ endif()
+endif()
+
configure_file(scripts/pugixml.pc.in pugixml.pc @ONLY)
if (NOT DEFINED PUGIXML_RUNTIME_COMPONENT)