Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
RunCMake
/
if
/
AndOr.cmake
blob: 847d6f270a4079a83b06e59dd8d7f53553a82f20 [
file
]
# 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
()