Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
62dc29dfccbecb51962d8b7bb6ec00e596272d75
/
.
/
Tests
/
RunCMake
/
ToolchainFile
/
SetCompilerLoaded.cmake
blob: e731cbc29e9715f3fd5618acaba50ecb1fabd4da [
file
]
enable_language
(
C
)
try_compile
(
SHOULD_PASS SOURCE_FROM_CONTENT
"main.c"
"int main(void) { return 0; }"
)
if
(
NOT SHOULD_PASS
)
message
(
FATAL_ERROR
"try_compile failed but should have passed!"
)
endif
()