diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-03 18:36:01 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-08-03 18:36:01 (GMT) |
commit | 947edfcdf549d4aaa60d21729c30ff3a44b3b588 (patch) | |
tree | 9df7c359f09f4c01b2fbb997f14e2316c60371d8 /Modules | |
parent | d1a25bd83645a55ee0c761238655de9a781ef036 (diff) | |
download | CMake-947edfcdf549d4aaa60d21729c30ff3a44b3b588.zip CMake-947edfcdf549d4aaa60d21729c30ff3a44b3b588.tar.gz CMake-947edfcdf549d4aaa60d21729c30ff3a44b3b588.tar.bz2 |
ENH: fix for makedev three args test
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CheckCSourceRuns.cmake | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/Modules/CheckCSourceRuns.cmake b/Modules/CheckCSourceRuns.cmake index 641b41f..7b15c42 100644 --- a/Modules/CheckCSourceRuns.cmake +++ b/Modules/CheckCSourceRuns.cmake @@ -1,4 +1,4 @@ -# - Check if the source code provided in the SOURCE argument compiles. +# - Check if the source code provided in the SOURCE argument compiles and runs. # CHECK_C_SOURCE_RUNS(SOURCE VAR) # - macro which checks if the source code runs # SOURCE - source code to try to compile @@ -40,21 +40,29 @@ MACRO(CHECK_C_SOURCE_RUNS SOURCE VAR) "${CHECK_C_SOURCE_COMPILES_ADD_LIBRARIES}" "${CHECK_C_SOURCE_COMPILES_ADD_INCLUDES}" OUTPUT_VARIABLE OUTPUT) - IF(${VAR}) + # if it did not compile make the return value fail code of 1 + IF(NOT ${${VAR}_COMPILED}) + SET(${VAR} 1) + ENDIF(NOT ${${VAR}_COMPILED}) + # if the return value was 0 then it worked + SET(result_var ${${VAR}}) + IF(${result_var} EQUAL 0) SET(${VAR} 1 CACHE INTERNAL "Test ${FUNCTION}") MESSAGE(STATUS "Performing Test ${VAR} - Success") FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log "Performing C SOURCE FILE Test ${VAR} succeded with the following output:\n" "${OUTPUT}\n" + "Return value: ${${VAR}}\n" "Source file was:\n${SOURCE}\n") - ELSE(${VAR}) + ELSE(${result_var} EQUAL 0) MESSAGE(STATUS "Performing Test ${VAR} - Failed") SET(${VAR} "" CACHE INTERNAL "Test ${FUNCTION}") FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log "Performing C SOURCE FILE Test ${VAR} failed with the following output:\n" "${OUTPUT}\n" + "Return value: ${result_var}\n" "Source file was:\n${SOURCE}\n") - ENDIF(${VAR}) + ENDIF(${result_var} EQUAL 0) ENDIF("${VAR}" MATCHES "^${VAR}$") ENDMACRO(CHECK_C_SOURCE_RUNS) |