summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/install/CODE-genex-check.cmake
diff options
context:
space:
mode:
authorJon Chronopoulos <patches@crondog.com>2018-05-29 11:37:26 (GMT)
committerBrad King <brad.king@kitware.com>2018-06-07 17:18:23 (GMT)
commit6dad812143ae50df5ed0de4c5c2d433b6d59aea2 (patch)
tree9a20cd5510a8275bbef5405c8342fd316392ca90 /Tests/RunCMake/install/CODE-genex-check.cmake
parentacaaca968c512fa420f3564649be1f49acfa6a6a (diff)
downloadCMake-6dad812143ae50df5ed0de4c5c2d433b6d59aea2.zip
CMake-6dad812143ae50df5ed0de4c5c2d433b6d59aea2.tar.gz
CMake-6dad812143ae50df5ed0de4c5c2d433b6d59aea2.tar.bz2
install: Teach CODE,SCRIPT modes to evaluate generator expressions
Fixes: #15785
Diffstat (limited to 'Tests/RunCMake/install/CODE-genex-check.cmake')
-rw-r--r--Tests/RunCMake/install/CODE-genex-check.cmake7
1 files changed, 7 insertions, 0 deletions
diff --git a/Tests/RunCMake/install/CODE-genex-check.cmake b/Tests/RunCMake/install/CODE-genex-check.cmake
new file mode 100644
index 0000000..422c532
--- /dev/null
+++ b/Tests/RunCMake/install/CODE-genex-check.cmake
@@ -0,0 +1,7 @@
+execute_process(COMMAND ${CMAKE_COMMAND} -P ${RunCMake_TEST_BINARY_DIR}/cmake_install.cmake
+ OUTPUT_VARIABLE out ERROR_VARIABLE err)
+if(NOT out MATCHES "-- Install configuration: .*-- codegenexlib")
+ string(REGEX REPLACE "\n" "\n " out " ${out}")
+ string(APPEND RunCMake_TEST_FAILED
+ "\"-- codegenexlib\" was not found:\n${out}")
+endif()