summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/GeneratorExpressionShortCircuit/GoodOR.cmake
blob: db2fd521444200692f12577c61b0c9ca41f24663 (plain)
1
2
3
4
5
6
set(error $<0>)
add_custom_target(check ALL COMMAND check
  $<OR:1,${error}>
  $<OR:0,1,${error}>
  $<OR:1,0,${error}>
)