diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-01 15:02:47 -0500 |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-01-01 15:02:47 -0500 |
commit | 5e48ccac35327927f137d99bb3ce20b2522e2aeb (patch) | |
tree | 75fbdcd918956a625a4774007800dd46000e69b9 | |
parent | 6d5c4370450fa34afb754ca2fdef79ee71ab9d99 (diff) | |
download | cmake-5e48ccac35327927f137d99bb3ce20b2522e2aeb.tar.gz |
Add a way to add custom libraries to the mix. Also add status reporting
-rw-r--r-- | Modules/CheckVariableExists.cmake | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Modules/CheckVariableExists.cmake b/Modules/CheckVariableExists.cmake index b6e3a78aa8..9648964205 100644 --- a/Modules/CheckVariableExists.cmake +++ b/Modules/CheckVariableExists.cmake @@ -8,15 +8,23 @@ MACRO(CHECK_VARIABLE_EXISTS VAR VARIABLE) IF("${VARIABLE}" MATCHES "^${VARIABLE}$") SET(MACRO_CHECK_VARIABLE_DEFINITIONS -DCHECK_VARIABLE_EXISTS=${VAR}) + MESSAGE(STATUS "Looking for ${VARIABLE}") + IF(CMAKE_REQUIRED_LIBRARIES) + SET(CHECK_VARIABLE_EXISTS_ADD_LIBRARIES + "-DLINK_LIBRARIES:STRING=${CMAKE_REQUIRED_LIBRARIES}") + ENDIF(CMAKE_REQUIRED_LIBRARIES) TRY_COMPILE(${VARIABLE} ${CMAKE_BINARY_DIR} ${CMAKE_ROOT}/Modules/CheckVariableExists.c CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_VARIABLE_DEFINITIONS} + ${CHECK_VARIABLE_EXISTS_ADD_LIBRARIES} OUTPUT_VARIABLE OUTPUT) IF(${VARIABLE}) SET(${VARIABLE} 1 CACHE INTERNAL "Have variable ${VAR}") + MESSAGE(STATUS "Looking for ${VARIABLE} - found") ELSE(${VARIABLE}) SET(${VARIABLE} "" CACHE INTERNAL "Have variable ${VAR}") + MESSAGE(STATUS "Looking for ${VARIABLE} - not found") WRITE_FILE(${CMAKE_BINARY_DIR}/CMakeError.log "Determining if the variable ${VAR} exists failed with the following output:\n" "${OUTPUT}\n" APPEND) |