2005-12-14 21:51:08 +03:00
|
|
|
# - Check if the files can be included
|
2003-01-02 02:00:49 +03:00
|
|
|
#
|
2005-12-14 21:51:08 +03:00
|
|
|
# CHECK_INCLUDE_FILES(INCLUDE VARIABLE)
|
2005-12-15 18:41:19 +03:00
|
|
|
#
|
|
|
|
# INCLUDE - list of files to include
|
2005-12-14 21:51:08 +03:00
|
|
|
# VARIABLE - variable to return result
|
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
|
2003-01-02 02:00:49 +03:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2003-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.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2003-01-02 02:00:49 +03:00
|
|
|
MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE)
|
|
|
|
IF("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
2006-02-23 17:58:07 +03:00
|
|
|
SET(CMAKE_CONFIGURABLE_FILE_CONTENT "/* */\n")
|
2006-02-09 21:14:57 +03:00
|
|
|
IF(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
SET(CHECK_INCLUDE_FILES_INCLUDE_DIRS "-DINCLUDE_DIRECTORIES=${CMAKE_REQUIRED_INCLUDES}")
|
|
|
|
ELSE(CMAKE_REQUIRED_INCLUDES)
|
|
|
|
SET(CHECK_INCLUDE_FILES_INCLUDE_DIRS)
|
|
|
|
ENDIF(CMAKE_REQUIRED_INCLUDES)
|
2003-01-02 02:00:49 +03:00
|
|
|
SET(CHECK_INCLUDE_FILES_CONTENT "/* */\n")
|
2003-01-04 03:23:19 +03:00
|
|
|
SET(MACRO_CHECK_INCLUDE_FILES_FLAGS ${CMAKE_REQUIRED_FLAGS})
|
2003-01-02 02:00:49 +03:00
|
|
|
FOREACH(FILE ${INCLUDE})
|
2006-02-23 17:58:07 +03:00
|
|
|
SET(CMAKE_CONFIGURABLE_FILE_CONTENT
|
|
|
|
"${CMAKE_CONFIGURABLE_FILE_CONTENT}#include <${FILE}>\n")
|
2003-01-02 02:00:49 +03:00
|
|
|
ENDFOREACH(FILE)
|
2006-02-23 17:58:07 +03:00
|
|
|
SET(CMAKE_CONFIGURABLE_FILE_CONTENT
|
|
|
|
"${CMAKE_CONFIGURABLE_FILE_CONTENT}\n\nint main(){return 0;}\n")
|
|
|
|
CONFIGURE_FILE("${CMAKE_ROOT}/Modules/CMakeConfigurableFile.in"
|
2006-06-14 20:28:32 +04:00
|
|
|
"${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFiles.c" @ONLY IMMEDIATE)
|
2003-07-11 22:14:03 +04:00
|
|
|
|
2003-01-21 22:01:41 +03:00
|
|
|
MESSAGE(STATUS "Looking for include files ${VARIABLE}")
|
2003-01-02 02:00:49 +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/CheckIncludeFiles.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_FILES_FLAGS}
|
2006-02-09 21:14:57 +03:00
|
|
|
"${CHECK_INCLUDE_FILES_INCLUDE_DIRS}"
|
2003-07-11 22:14:03 +04:00
|
|
|
OUTPUT_VARIABLE OUTPUT)
|
2003-01-02 02:00:49 +03:00
|
|
|
IF(${VARIABLE})
|
2003-01-21 22:01:41 +03:00
|
|
|
MESSAGE(STATUS "Looking for include files ${VARIABLE} - found")
|
|
|
|
SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${VARIABLE}")
|
2008-02-18 01:40:01 +03:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
2003-08-08 19:59:07 +04:00
|
|
|
"Determining if files ${INCLUDE} "
|
|
|
|
"exist passed with the following output:\n"
|
|
|
|
"${OUTPUT}\n\n")
|
2003-01-02 02:00:49 +03:00
|
|
|
ELSE(${VARIABLE})
|
2003-01-21 22:01:41 +03:00
|
|
|
MESSAGE(STATUS "Looking for include files ${VARIABLE} - not found.")
|
|
|
|
SET(${VARIABLE} "" CACHE INTERNAL "Have includes ${VARIABLE}")
|
2006-06-14 20:28:32 +04:00
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
|
2003-01-02 02:00:49 +03:00
|
|
|
"Determining if files ${INCLUDE} "
|
|
|
|
"exist failed with the following output:\n"
|
2006-02-23 17:58:07 +03:00
|
|
|
"${OUTPUT}\nSource:\n${CMAKE_CONFIGURABLE_FILE_CONTENT}\n")
|
2003-01-02 02:00:49 +03:00
|
|
|
ENDIF(${VARIABLE})
|
|
|
|
ENDIF("${VARIABLE}" MATCHES "^${VARIABLE}$")
|
|
|
|
ENDMACRO(CHECK_INCLUDE_FILES)
|