summaryrefslogtreecommitdiff
path: root/Modules/CTestTargets.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/CTestTargets.cmake')
-rw-r--r--Modules/CTestTargets.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/CTestTargets.cmake b/Modules/CTestTargets.cmake
index ff9aada542..da9bcb0eee 100644
--- a/Modules/CTestTargets.cmake
+++ b/Modules/CTestTargets.cmake
@@ -38,7 +38,8 @@ endif()
#
set(__conf_types "")
-if(CMAKE_CONFIGURATION_TYPES)
+get_property(_isMultiConfig GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
+if(_isMultiConfig)
# We need to pass the configuration type on the test command line.
set(__conf_types -C "${CMAKE_CFG_INTDIR}")
endif()