diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-20 19:01:27 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-20 19:01:27 (GMT) |
commit | 28159ebd71d2080012dabf35e9d9ad6d8538db44 (patch) | |
tree | 728f0787e7667a5af85dee3362fda5ae6d3bf8c7 /Modules/CheckFunctionExists.cmake | |
parent | 202600f95a2fe3c401e7c6ba64a3ce93e2143f88 (diff) | |
download | CMake-28159ebd71d2080012dabf35e9d9ad6d8538db44.zip CMake-28159ebd71d2080012dabf35e9d9ad6d8538db44.tar.gz CMake-28159ebd71d2080012dabf35e9d9ad6d8538db44.tar.bz2 |
Fix tests for new trycompile and tryrun
Diffstat (limited to 'Modules/CheckFunctionExists.cmake')
-rw-r--r-- | Modules/CheckFunctionExists.cmake | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Modules/CheckFunctionExists.cmake b/Modules/CheckFunctionExists.cmake index 4e57816..3640fd9 100644 --- a/Modules/CheckFunctionExists.cmake +++ b/Modules/CheckFunctionExists.cmake @@ -7,16 +7,14 @@ # MACRO(CHECK_FUNCTION_EXISTS FUNCTION VARIABLE) - TRY_COMPILE(COMPILE_OK + TRY_COMPILE(${VARIABLE} ${PROJECT_BINARY_DIR} ${CMAKE_ROOT}/Modules/CheckFunctionExists.c COMPILE_DEFINITIONS -DCHECK_FUNCTION_EXISTS=${FUNCTION} OUTPUT_VARIABLE OUTPUT) - IF(COMPILE_OK) - SET(${VARIABLE} ${COMPILE_OK}) - ELSE(COMPILE_OK) + IF(NOT ${VARIABLE}) WRITE_FILE(${PROJECT_BINARY_DIR}/CMakeError.log "Determining if the function ${FUNCTION} exists failed with the following output:\n" "${OUTPUT}\n") - ENDIF(COMPILE_OK) + ENDIF(NOT ${VARIABLE}) ENDMACRO(CHECK_FUNCTION_EXISTS) |