You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
945 B
39 lines
945 B
2 years ago
|
enable_language(C)
|
||
|
|
||
|
set(CMAKE_TRY_COMPILE_PLATFORM_VARIABLES
|
||
|
ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||
|
abcdefghijklmnopqrstuvwxyz
|
||
|
_-0123456789
|
||
|
"WITH SPACE"
|
||
|
)
|
||
|
set(ABCDEFGHIJKLMNOPQRSTUVWXYZ "Upper case")
|
||
|
set(abcdefghijklmnopqrstuvwxyz "Lower case")
|
||
|
set(_-0123456789 "Other chars")
|
||
|
set("WITH SPACE" "Space")
|
||
|
|
||
|
try_compile(COMPILE_RESULT
|
||
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-bad.c
|
||
|
LOG_DESCRIPTION "Source that should not compile."
|
||
|
)
|
||
|
|
||
|
unset(CMAKE_TRY_COMPILE_PLATFORM_VARIABLES)
|
||
|
|
||
|
try_compile(COMPILE_RESULT
|
||
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
||
|
NO_LOG
|
||
|
)
|
||
|
|
||
|
message(CHECK_START "Check 1")
|
||
|
message(CHECK_START "Check 2")
|
||
|
try_compile(COMPILE_RESULT
|
||
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
||
|
LOG_DESCRIPTION "Source that should compile."
|
||
|
)
|
||
|
if (COMPILE_RESULT)
|
||
|
message(CHECK_PASS "passed")
|
||
|
message(CHECK_PASS "passed")
|
||
|
else()
|
||
|
message(CHECK_FAIL "failed")
|
||
|
message(CHECK_FAIL "failed")
|
||
|
endif()
|