diff options
Diffstat (limited to 'Tests/GeneratorExpression')
-rw-r--r-- | Tests/GeneratorExpression/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Tests/GeneratorExpression/check.cmake | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/Tests/GeneratorExpression/CMakeLists.txt b/Tests/GeneratorExpression/CMakeLists.txt index 6494107..41639ac 100644 --- a/Tests/GeneratorExpression/CMakeLists.txt +++ b/Tests/GeneratorExpression/CMakeLists.txt @@ -30,6 +30,7 @@ add_custom_target(check ALL -Dtest_bool_off=$<BOOL:Off> -Dtest_bool_no=$<BOOL:No> -Dtest_bool_n=$<BOOL:N> + -Dtest_bool_empty=$<BOOL:> -Dtest_strequal_yes_yes=$<STREQUAL:Yes,Yes> -Dtest_strequal_yes_yes_cs=$<STREQUAL:Yes,yes> -Dtest_strequal_yes_no=$<STREQUAL:Yes,No> diff --git a/Tests/GeneratorExpression/check.cmake b/Tests/GeneratorExpression/check.cmake index 7192470..fd1e2ab 100644 --- a/Tests/GeneratorExpression/check.cmake +++ b/Tests/GeneratorExpression/check.cmake @@ -31,6 +31,7 @@ check(test_bool_on "1") check(test_bool_off "0") check(test_bool_no "0") check(test_bool_n "0") +check(test_bool_empty "0") check(test_strequal_yes_yes "1") check(test_strequal_yes_yes_cs "0") check(test_strequal_yes_no "0") |