2009-09-28 19:46:51 +04:00
|
|
|
|
|
|
|
#=============================================================================
|
|
|
|
# Copyright 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.)
|
|
|
|
|
2009-05-12 23:11:16 +04:00
|
|
|
# This file is included in CMakeSystemSpecificInformation.cmake if
|
|
|
|
# the Eclipse CDT4 extra generator has been selected.
|
|
|
|
|
|
|
|
FIND_PROGRAM(CMAKE_ECLIPSE_EXECUTABLE NAMES eclipse DOC "The Eclipse executable")
|
|
|
|
|
|
|
|
|
|
|
|
# The Eclipse generator needs to know the standard include path
|
|
|
|
# so that Eclipse ca find the headers at runtime and parsing etc. works better
|
|
|
|
# This is done here by actually running gcc with the options so it prints its
|
|
|
|
# system include directories, which are parsed then and stored in the cache.
|
2010-08-15 16:59:16 +04:00
|
|
|
MACRO(_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS _lang _resultIncludeDirs _resultDefines)
|
|
|
|
SET(${_resultIncludeDirs})
|
2009-05-12 23:11:16 +04:00
|
|
|
SET(_gccOutput)
|
|
|
|
FILE(WRITE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy" "\n" )
|
2009-09-16 22:37:21 +04:00
|
|
|
EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -v -E -x ${_lang} -dD dummy
|
2009-05-12 23:11:16 +04:00
|
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/CMakeFiles
|
|
|
|
ERROR_VARIABLE _gccOutput
|
2009-09-16 22:37:21 +04:00
|
|
|
OUTPUT_VARIABLE _gccStdout )
|
2009-05-12 23:11:16 +04:00
|
|
|
FILE(REMOVE "${CMAKE_BINARY_DIR}/CMakeFiles/dummy")
|
|
|
|
|
2010-08-15 17:15:12 +04:00
|
|
|
# First find the system include dirs:
|
2009-05-12 23:11:16 +04:00
|
|
|
IF( "${_gccOutput}" MATCHES "> search starts here[^\n]+\n *(.+) *\n *End of (search) list" )
|
2010-08-15 16:59:16 +04:00
|
|
|
|
|
|
|
# split the output into lines and then remove leading and trailing spaces from each of them:
|
|
|
|
STRING(REGEX MATCHALL "[^\n]+\n" _includeLines "${CMAKE_MATCH_1}")
|
|
|
|
FOREACH(nextLine ${_includeLines})
|
|
|
|
STRING(STRIP "${nextLine}" _includePath)
|
|
|
|
LIST(APPEND ${_resultIncludeDirs} "${_includePath}")
|
|
|
|
ENDFOREACH(nextLine)
|
|
|
|
|
2009-05-12 23:11:16 +04:00
|
|
|
ENDIF( "${_gccOutput}" MATCHES "> search starts here[^\n]+\n *(.+) *\n *End of (search) list" )
|
2010-08-15 16:59:16 +04:00
|
|
|
|
2010-08-15 17:15:12 +04:00
|
|
|
|
|
|
|
# now find the builtin macros:
|
|
|
|
STRING(REGEX MATCHALL "#define[^\n]+\n" _defineLines "${_gccStdout}")
|
|
|
|
|
|
|
|
FOREACH(nextLine ${_defineLines})
|
|
|
|
STRING(REGEX REPLACE "#define " "" _defineRemoved "${nextLine}")
|
|
|
|
# not sure why this longer regexp was in the patch, the shorter one in the line below seems to work just fine:
|
|
|
|
# STRING(REGEX MATCH "[A-Za-z_][A-Za-z0-9_]*|[A-Za-z_][A-Za-z0-9_]*\\([A-Za-z0-9_, ]*\\)" _name "${_defineRemoved}")
|
|
|
|
STRING(REGEX MATCH "[A-Za-z_][A-Za-z0-9_]*" _name "${_defineRemoved}")
|
|
|
|
LIST(APPEND ${_resultDefines} "${_name}")
|
|
|
|
|
|
|
|
STRING(REPLACE ${_name} "" _nameRemoved "${_defineRemoved}")
|
|
|
|
STRING(STRIP "${_nameRemoved}" _value)
|
|
|
|
IF(_value)
|
|
|
|
LIST(APPEND ${_resultDefines} "${_value}")
|
|
|
|
ELSE()
|
|
|
|
LIST(APPEND ${_resultDefines} " ")
|
|
|
|
ENDIF()
|
|
|
|
ENDFOREACH(nextLine)
|
|
|
|
|
2009-05-12 23:11:16 +04:00
|
|
|
ENDMACRO(_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS _lang)
|
|
|
|
|
2009-06-28 13:59:42 +04:00
|
|
|
# Save the current LC_ALL, LC_MESSAGES, and LANG environment variables and set them
|
|
|
|
# to "C" that way GCC's "search starts here" text is in English and we can grok it.
|
|
|
|
SET(_orig_lc_all $ENV{LC_ALL})
|
|
|
|
SET(_orig_lc_messages $ENV{LC_MESSAGES})
|
|
|
|
SET(_orig_lang $ENV{LANG})
|
|
|
|
IF(_orig_lc_all)
|
|
|
|
SET(ENV{LC_ALL} C)
|
|
|
|
ENDIF(_orig_lc_all)
|
|
|
|
IF(_orig_lc_messages)
|
|
|
|
SET(ENV{LC_MESSAGES} C)
|
|
|
|
ENDIF(_orig_lc_messages)
|
|
|
|
IF(_orig_lang)
|
|
|
|
SET(ENV{LANG} C)
|
|
|
|
ENDIF(_orig_lang)
|
|
|
|
|
2009-09-17 21:08:35 +04:00
|
|
|
# Now check for C, works for gcc and Intel compiler at least
|
|
|
|
IF (NOT CMAKE_ECLIPSE_C_SYSTEM_INCLUDE_DIRS)
|
|
|
|
IF ("${CMAKE_C_COMPILER_ID}" MATCHES GNU OR "${CMAKE_C_COMPILER_ID}" MATCHES Intel)
|
|
|
|
_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS(c _dirs _defines)
|
|
|
|
SET(CMAKE_ECLIPSE_C_SYSTEM_INCLUDE_DIRS "${_dirs}" CACHE INTERNAL "C compiler system include directories")
|
|
|
|
SET(CMAKE_ECLIPSE_C_SYSTEM_DEFINED_MACROS "${_defines}" CACHE INTERNAL "C compiler system defined macros")
|
|
|
|
ENDIF ("${CMAKE_C_COMPILER_ID}" MATCHES GNU OR "${CMAKE_C_COMPILER_ID}" MATCHES Intel)
|
|
|
|
ENDIF (NOT CMAKE_ECLIPSE_C_SYSTEM_INCLUDE_DIRS)
|
2009-05-12 23:11:16 +04:00
|
|
|
|
|
|
|
# And now the same for C++
|
2009-09-17 21:08:35 +04:00
|
|
|
IF (NOT CMAKE_ECLIPSE_CXX_SYSTEM_INCLUDE_DIRS)
|
|
|
|
IF ("${CMAKE_CXX_COMPILER_ID}" MATCHES GNU OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Intel)
|
|
|
|
_DETERMINE_GCC_SYSTEM_INCLUDE_DIRS(c++ _dirs _defines)
|
|
|
|
SET(CMAKE_ECLIPSE_CXX_SYSTEM_INCLUDE_DIRS "${_dirs}" CACHE INTERNAL "CXX compiler system include directories")
|
|
|
|
SET(CMAKE_ECLIPSE_CXX_SYSTEM_DEFINED_MACROS "${_defines}" CACHE INTERNAL "CXX compiler system defined macros")
|
|
|
|
ENDIF ("${CMAKE_CXX_COMPILER_ID}" MATCHES GNU OR "${CMAKE_CXX_COMPILER_ID}" MATCHES Intel)
|
|
|
|
ENDIF (NOT CMAKE_ECLIPSE_CXX_SYSTEM_INCLUDE_DIRS)
|
2009-05-12 23:11:16 +04:00
|
|
|
|
2009-06-28 13:59:42 +04:00
|
|
|
# Restore original LC_ALL, LC_MESSAGES, and LANG
|
|
|
|
IF(_orig_lc_all)
|
|
|
|
SET(ENV{LC_ALL} ${_orig_lc_all})
|
|
|
|
ENDIF(_orig_lc_all)
|
|
|
|
IF(_orig_lc_messages)
|
|
|
|
SET(ENV{LC_MESSAGES} ${_orig_lc_messages})
|
|
|
|
ENDIF(_orig_lc_messages)
|
|
|
|
IF(_orig_lang)
|
|
|
|
SET(ENV{LANG} ${_orig_lang})
|
|
|
|
ENDIF(_orig_lang)
|