Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
a881ae61f1e005dd64cf317a7dfcbe6ffa71d72b
/
.
/
Tests
/
RunCMake
/
if
/
AndOr.cmake
blob: 847d6f270a4079a83b06e59dd8d7f53553a82f20 [
file
] [
log
] [
blame
]
# AND and OR are the same precedence
if
(
1
OR
0
AND
0
)
# equivalent to ((1 OR 0) AND 0)
message
(
FATAL_ERROR
"AND incorrectly evaluated before OR"
)
else
()
message
(
STATUS
"OR and AND correctly evaluated left to right"
)
endif
()