2013-10-15 11:17:36 -04:00
|
|
|
#.rst:
|
|
|
|
# CheckVariableExists
|
|
|
|
# -------------------
|
|
|
|
#
|
|
|
|
# Check if the variable exists.
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# CHECK_VARIABLE_EXISTS(VAR VARIABLE)
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# ::
|
|
|
|
#
|
|
|
|
# VAR - the name of the variable
|
|
|
|
# VARIABLE - variable to store the result
|
|
|
|
#
|
2012-01-18 21:55:52 +01:00
|
|
|
#
|
2006-02-09 19:23:18 -05:00
|
|
|
#
|
2005-12-14 13:51:08 -05:00
|
|
|
# This macro is only for C variables.
|
2005-11-02 13:51:59 -05:00
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
# The following variables may be set before calling this macro to modify
|
|
|
|
# the way the check is run:
|
|
|
|
#
|
|
|
|
# ::
|
2006-02-09 19:23:18 -05:00
|
|
|
#
|
2013-10-15 11:17:36 -04:00
|
|
|
# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
|
|
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
|
|
# CMAKE_REQUIRED_LIBRARIES = list of libraries to link
|
2014-03-29 20:12:27 -06:00
|
|
|
# CMAKE_REQUIRED_QUIET = execute quietly without messages
|
2006-02-09 19:23:18 -05:00
|
|
|
|
2009-09-28 11:46:51 -04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2002-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-06 17:48:47 -07:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 11:46:51 -04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2012-02-16 23:35:43 +01:00
|
|
|
|
|
|
|
|
2012-08-13 13:47:32 -04:00
|
|
|
macro(CHECK_VARIABLE_EXISTS VAR VARIABLE)
|
|
|
|
if("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
|
|
|
set(MACRO_CHECK_VARIABLE_DEFINITIONS
|
2003-07-11 14:14:03 -04:00
|
|
|
"-DCHECK_VARIABLE_EXISTS=${VAR} ${CMAKE_REQUIRED_FLAGS}")
|
2014-03-29 20:12:27 -06:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Looking for ${VAR}")
|
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
if(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
set(CHECK_VARIABLE_EXISTS_ADD_LIBRARIES
|
2013-02-09 10:34:37 +01:00
|
|
|
LINK_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2012-08-13 13:47:32 -04:00
|
|
|
set(CHECK_VARIABLE_EXISTS_ADD_LIBRARIES)
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
try_compile(${VARIABLE}
|
2003-07-11 14:14:03 -04:00
|
|
|
${CMAKE_BINARY_DIR}
|
|
|
|
${CMAKE_ROOT}/Modules/CheckVariableExists.c
|
2006-02-09 19:23:18 -05:00
|
|
|
COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
|
2013-02-09 10:34:37 +01:00
|
|
|
${CHECK_VARIABLE_EXISTS_ADD_LIBRARIES}
|
2003-07-11 14:14:03 -04:00
|
|
|
CMAKE_FLAGS -DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_VARIABLE_DEFINITIONS}
|
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2012-08-13 13:47:32 -04:00
|
|
|
if(${VARIABLE})
|
|
|
|
set(${VARIABLE} 1 CACHE INTERNAL "Have variable ${VAR}")
|
2014-03-29 20:12:27 -06:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Looking for ${VAR} - found")
|
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 11:59:07 -04:00
|
|
|
"Determining if the variable ${VAR} exists passed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 13:50:14 -04:00
|
|
|
else()
|
2012-08-13 13:47:32 -04:00
|
|
|
set(${VARIABLE} "" CACHE INTERNAL "Have variable ${VAR}")
|
2014-03-29 20:12:27 -06:00
|
|
|
if(NOT CMAKE_REQUIRED_QUIET)
|
|
|
|
message(STATUS "Looking for ${VAR} - not found")
|
|
|
|
endif()
|
2012-08-13 13:47:32 -04:00
|
|
|
file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2002-12-13 14:58:55 -05:00
|
|
|
"Determining if the variable ${VAR} exists failed with the following output:\n"
|
2003-07-17 14:55:45 -04:00
|
|
|
"${OUTPUT}\n\n")
|
2012-08-13 13:50:14 -04:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endmacro()
|