summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake')
-rw-r--r--Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake b/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake
index 26bcaba..1827343 100644
--- a/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake
+++ b/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake
@@ -1,4 +1,7 @@
set(error $<0>)
add_custom_target(check ALL COMMAND check
$<AND:0,${error}>
+ $<AND:0,1,${error}>
+ $<AND:1,0,${error}>
+ $<AND:0,0,${error}>
)