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.
35 lines
922 B
35 lines
922 B
try_run(RUN_RESULT COMPILE_RESULT
|
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-bad.c
|
|
LOG_DESCRIPTION "Source that should not compile."
|
|
)
|
|
|
|
try_run(RUN_RESULT COMPILE_RESULT
|
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
|
NO_LOG
|
|
)
|
|
|
|
message(CHECK_START "Check 1")
|
|
try_run(RUN_RESULT COMPILE_RESULT
|
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
|
LOG_DESCRIPTION "Source that should compile."
|
|
)
|
|
|
|
message(CHECK_START "Check 2")
|
|
try_run(RUN_RESULT COMPILE_RESULT
|
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
|
RUN_OUTPUT_VARIABLE RUN_OUTPUT
|
|
)
|
|
if (RUN_RESULT)
|
|
message(CHECK_PASS "passed")
|
|
message(CHECK_PASS "passed")
|
|
else()
|
|
message(CHECK_FAIL "failed")
|
|
message(CHECK_FAIL "failed")
|
|
endif()
|
|
|
|
try_run(RUN_RESULT COMPILE_RESULT
|
|
SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/ConfigureLog-test.c
|
|
RUN_OUTPUT_STDOUT_VARIABLE RUN_STDOUT
|
|
RUN_OUTPUT_STDERR_VARIABLE RUN_STDERR
|
|
)
|