Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
0878306386d42084e8abc3525393ae2b65acf725
/
.
/
Tests
/
RunCMake
/
CMP0054
/
CMP0054-WARN.cmake
blob: a6089293b91150f26f5652a4b5aac100b8cbc629 [
file
] [
log
] [
blame
]
set
(
FOO
"BAR"
)
if
(
NOT
"FOO"
STREQUAL
"BAR"
)
message
(
FATAL_ERROR
"The given literals should match"
)
elseif
(
"FOO"
STREQUAL
"BING"
)
message
(
FATAL_ERROR
"The given literals should not match"
)
endif
()