2005-12-14 21:51:08 +03:00
|
|
|
# - Check if the include file exists.
|
|
|
|
# CHECK_INCLUDE_FILE(INCLUDE VARIABLE)
|
|
|
|
# - macro which checks the include file exists.
|
2005-12-15 18:41:19 +03:00
|
|
|
# INCLUDE - name of include file
|
2005-12-14 21:51:08 +03:00
|
|
|
# VARIABLE - variable to return result
|
|
|
|
#
|
2005-11-02 21:51:59 +03:00
|
|
|
# an optional third argument is the CFlags to add to the compile line
|
|
|
|
# or you can use CMAKE_REQUIRED_FLAGS
|
|
|
|
#
|
2006-02-10 03:23:18 +03:00
|
|
|
# The following variables may be set before calling this macro to
|
|
|
|
# modify the way the check is run:
|
|
|
|
#
|
|
|
|
# CMAKE_REQUIRED_FLAGS = string of compile command line flags
|
|
|
|
# CMAKE_REQUIRED_DEFINITIONS = list of macros to define (-DFOO=bar)
|
|
|
|
# CMAKE_REQUIRED_INCLUDES = list of include directories
|
|
|
|
#
|
2009-09-28 19: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-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2002-09-20 21:40:39 +04:00
|
|
|
MACRO(CHECK_INCLUDE_FILE INCLUDE VARIABLE)
|
2002-12-13 22:58:55 +03:00
|
|
|
IF("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
2006-02-10 03:23:18 +03:00
|
|
|
IF(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
SET(CHECK_INCLUDE_FILE_C_INCLUDE_DIRS "-DINCLUDE_DIRECTORIES=${CMAKE_REQUIRED_INCLUDES}")
|
|
|
|
ELSE(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
SET(CHECK_INCLUDE_FILE_C_INCLUDE_DIRS)
|
|
|
|
ENDIF(CMAKE_REQUIRED_INCLUDES)
|
2003-01-04 03:23:19 +03:00
|
|
|
SET(MACRO_CHECK_INCLUDE_FILE_FLAGS ${CMAKE_REQUIRED_FLAGS})
|
2002-11-18 18:52:09 +03:00
|
|
|
SET(CHECK_INCLUDE_FILE_VAR ${INCLUDE})
|
|
|
|
CONFIGURE_FILE(${CMAKE_ROOT}/Modules/CheckIncludeFile.c.in
|
2006-06-14 20:28:32 +04:00
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.c IMMEDIATE)
|
2002-11-18 18:52:09 +03:00
|
|
|
MESSAGE(STATUS "Looking for ${INCLUDE}")
|
2004-04-28 18:00:11 +04:00
|
|
|
IF(${ARGC} EQUAL 3)
|
|
|
|
SET(CMAKE_C_FLAGS_SAVE ${CMAKE_C_FLAGS})
|
|
|
|
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${ARGV2}")
|
|
|
|
ENDIF(${ARGC} EQUAL 3)
|
|
|
|
|
2002-11-18 18:52:09 +03:00
|
|
|
TRY_COMPILE(${VARIABLE}
|
2003-07-11 22:14:03 +04:00
|
|
|
${CMAKE_BINARY_DIR}
|
2006-06-14 20:28:32 +04:00
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFile.c
|
2006-02-10 03:23:18 +03:00
|
|
|
COMPILE_DEFINITIONS ${CMAKE_REQUIRED_DEFINITIONS}
|
2003-07-11 22:14:03 +04:00
|
|
|
CMAKE_FLAGS
|
|
|
|
-DCOMPILE_DEFINITIONS:STRING=${MACRO_CHECK_INCLUDE_FILE_FLAGS}
|
2006-02-10 03:23:18 +03:00
|
|
|
"${CHECK_INCLUDE_FILE_C_INCLUDE_DIRS}"
|
2004-04-28 18:00:11 +04:00
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
|
|
|
|
|
|
|
IF(${ARGC} EQUAL 3)
|
|
|
|
SET(CMAKE_C_FLAGS ${CMAKE_C_FLAGS_SAVE})
|
|
|
|
ENDIF(${ARGC} EQUAL 3)
|
|
|
|
|
2002-11-18 18:52:09 +03:00
|
|
|
IF(${VARIABLE})
|
|
|
|
MESSAGE(STATUS "Looking for ${INCLUDE} - found")
|
|
|
|
SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}")
|
2006-06-14 20:28:32 +04:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if the include file ${INCLUDE} "
|
|
|
|
"exists passed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ELSE(${VARIABLE})
|
2005-11-04 17:28:09 +03:00
|
|
|
MESSAGE(STATUS "Looking for ${INCLUDE} - not found")
|
2002-11-18 18:52:09 +03:00
|
|
|
SET(${VARIABLE} "" CACHE INTERNAL "Have include ${INCLUDE}")
|
2006-06-14 20:28:32 +04:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2002-11-18 18:52:09 +03:00
|
|
|
"Determining if the include file ${INCLUDE} "
|
|
|
|
"exists failed with the following output:\n"
|
2003-07-17 22:55:45 +04:00
|
|
|
"${OUTPUT}\n\n")
|
2002-11-18 18:52:09 +03:00
|
|
|
ENDIF(${VARIABLE})
|
2002-12-13 22:58:55 +03:00
|
|
|
ENDIF("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
2002-09-20 21:40:39 +04:00
|
|
|
ENDMACRO(CHECK_INCLUDE_FILE)
|