summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2019-12-19 18:42:24 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2019-12-19 18:42:24 (GMT)
commitfe280e0cda545e791b80cb5c6ca79ddf642fa08d (patch)
treebbff6f3426e2f6b007cbc127d0548c4788f59ce6
parent512ab500f06d6c645985cc8014c5e6291b9a059f (diff)
downloadCMake-fe280e0cda545e791b80cb5c6ca79ddf642fa08d.zip
CMake-fe280e0cda545e791b80cb5c6ca79ddf642fa08d.tar.gz
CMake-fe280e0cda545e791b80cb5c6ca79ddf642fa08d.tar.bz2
FindPython*: Fix erroneous target properties setting
Property IMPORTED_CONFIGURATIONS for targets Python*::Python and Python*::Module is not correctly set.
-rw-r--r--Modules/FindPython/Support.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPython/Support.cmake b/Modules/FindPython/Support.cmake
index b67d563..1b5a9db 100644
--- a/Modules/FindPython/Support.cmake
+++ b/Modules/FindPython/Support.cmake
@@ -2269,7 +2269,7 @@ if(_${_PYTHON_PREFIX}_CMAKE_ROLE STREQUAL "PROJECT")
endif()
else()
if (${_PYTHON_PREFIX}_LIBRARY_RELEASE AND ${_PYTHON_PREFIX}_LIBRARY_DEBUG)
- set_property (TARGET ${_PYTHON_PREFIX}::Python PROPERTY IMPORTED_CONFIGURATIONS RELEASE DEBUG)
+ set_property (TARGET ${__name} PROPERTY IMPORTED_CONFIGURATIONS RELEASE DEBUG)
set_target_properties (${__name}
PROPERTIES IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "C"
IMPORTED_LOCATION_RELEASE "${${_PYTHON_PREFIX}_LIBRARY_RELEASE}")