summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-10-01 11:59:27 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-10-01 11:59:33 (GMT)
commit436b57ccb22bea6ec6e9a0fda8922e8d217d91f4 (patch)
treebd42c4ff2ccdfcaf1a458f719b445592b9fa58b1 /Tests
parentb1e1cb2d0dea1198efb4b02652180cd3eae908c9 (diff)
parentc1f1eaf7a4e4f1dfaba9a1fb1738aad48296bcda (diff)
downloadCMake-436b57ccb22bea6ec6e9a0fda8922e8d217d91f4.zip
CMake-436b57ccb22bea6ec6e9a0fda8922e8d217d91f4.tar.gz
CMake-436b57ccb22bea6ec6e9a0fda8922e8d217d91f4.tar.bz2
Merge topic 'genexpr-for-mfc-flag'
c1f1eaf7a4 VS: Teach CMAKE_MFC_FLAG to support generator expressions Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !5283
Diffstat (limited to 'Tests')
-rw-r--r--Tests/MFC/CMakeLists.txt.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/MFC/CMakeLists.txt.in b/Tests/MFC/CMakeLists.txt.in
index bf98e91..3632e03 100644
--- a/Tests/MFC/CMakeLists.txt.in
+++ b/Tests/MFC/CMakeLists.txt.in
@@ -65,3 +65,6 @@ if("${CMAKE_MFC_FLAG}" STREQUAL "2")
set(CMAKE_INSTALL_MFC_LIBRARIES ON)
include(InstallRequiredSystemLibraries)
endif()
+
+# Encode the value inside a generator expression to test evaluation.
+set(CMAKE_MFC_FLAG "$<1:${CMAKE_MFC_FLAG}>")