Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
refs/heads/master
/
.
/
Tests
/
RunCMake
/
ToolchainFile
/
SetCompilerLoaded.cmake
blob: e731cbc29e9715f3fd5618acaba50ecb1fabd4da [
file
] [
edit
]
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
()