From 9d7e556ed56da45276ab2d088caabb510db93cdc Mon Sep 17 00:00:00 2001 From: Isabella Muerte <63051+slurps-mad-rips@users.noreply.github.com> Date: Fri, 27 Sep 2019 10:25:27 -0700 Subject: [PATCH] Fix `DEBUG_POSTFIX` property (#746) The generator expressions here are actually unnecessary, now that I think about it. This should fix #745 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b9759b0..9423763 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -117,7 +117,7 @@ set_target_properties(yaml-cpp PROPERTIES VERSION "${PROJECT_VERSION}" SOVERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}" PROJECT_LABEL "yaml-cpp $" - DEBUG_POSTFIX $<$,$>:d>) + DEBUG_POSTFIX d) configure_package_config_file( "${PROJECT_SOURCE_DIR}/yaml-cpp-config.cmake.in"