summaryrefslogtreecommitdiffstats
path: root/Tests/GeneratorExpression/check-part1.cmake
diff options
context:
space:
mode:
authorJean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>2013-03-12 06:52:01 (GMT)
committerBrad King <brad.king@kitware.com>2013-03-12 20:46:03 (GMT)
commit7f3bb8b39234766b48e0dd18a47ed46d6fa176e6 (patch)
treee5530f01045cd27a1f357841f3008a7e5cff010f /Tests/GeneratorExpression/check-part1.cmake
parent153242601e22d6f06e1f14dc55d70c2a42b2ec5f (diff)
downloadCMake-7f3bb8b39234766b48e0dd18a47ed46d6fa176e6.zip
CMake-7f3bb8b39234766b48e0dd18a47ed46d6fa176e6.tar.gz
CMake-7f3bb8b39234766b48e0dd18a47ed46d6fa176e6.tar.bz2
Add $<SEMICOLON> generator expression.
This expression is useful to put a ';' in a command line argument without dividing the argument during CMake list expansion.
Diffstat (limited to 'Tests/GeneratorExpression/check-part1.cmake')
-rw-r--r--Tests/GeneratorExpression/check-part1.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Tests/GeneratorExpression/check-part1.cmake b/Tests/GeneratorExpression/check-part1.cmake
index 7abfa82..9bef159 100644
--- a/Tests/GeneratorExpression/check-part1.cmake
+++ b/Tests/GeneratorExpression/check-part1.cmake
@@ -44,11 +44,13 @@ check(test_strequal_yes_no "0")
check(test_strequal_no_yes "0")
check(test_strequal_angle_r "1")
check(test_strequal_comma "1")
+check(test_strequal_semicolon "1")
check(test_strequal_angle_r_comma "0")
check(test_strequal_both_empty "1")
check(test_strequal_one_empty "0")
check(test_angle_r ">")
check(test_comma ",")
+check(test_semicolon ";")
check(test_colons_1 ":")
check(test_colons_2 "::")
check(test_colons_3 "Qt5::Core")