summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodAND.cmake
blob: 1827343d0bbf10f866ec69155953825b7a40a0ec (plain)
1
2
3
4
5
6
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}>
)