Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
bd2d6c8f39d46d5f2f95e00a876ecee627d5ccc6
/
.
/
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
()