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.
2012-08-13 21:47:32 +04:00
find_program ( CMAKE_ECLIPSE_EXECUTABLE NAMES eclipse DOC "The Eclipse executable" )
2009-05-12 23:11:16 +04:00
2012-08-13 21:47:32 +04:00
function ( _FIND_ECLIPSE_VERSION )
2011-10-15 20:43:27 +04:00
# This code is in a function so the variables used here have only local scope
# Set up a map with the names of the Eclipse releases:
2012-08-13 21:47:32 +04:00
set ( _ECLIPSE_VERSION_NAME_ "Unknown" )
set ( _ECLIPSE_VERSION_NAME_3.2 "Callisto" )
set ( _ECLIPSE_VERSION_NAME_3.3 "Europa" )
set ( _ECLIPSE_VERSION_NAME_3.4 "Ganymede" )
set ( _ECLIPSE_VERSION_NAME_3.5 "Galileo" )
set ( _ECLIPSE_VERSION_NAME_3.6 "Helios" )
set ( _ECLIPSE_VERSION_NAME_3.7 "Indigo" )
set ( _ECLIPSE_VERSION_NAME_4.2 "Juno" )
2013-09-19 02:58:25 +04:00
set ( _ECLIPSE_VERSION_NAME_4.3 "Kepler" )
2011-10-15 20:43:27 +04:00
2013-09-19 02:53:38 +04:00
if ( NOT DEFINED CMAKE_ECLIPSE_VERSION )
if ( CMAKE_ECLIPSE_EXECUTABLE )
# use REALPATH to resolve symlinks (http://public.kitware.com/Bug/view.php?id=13036)
get_filename_component ( _REALPATH_CMAKE_ECLIPSE_EXECUTABLE "${CMAKE_ECLIPSE_EXECUTABLE}" REALPATH )
get_filename_component ( _ECLIPSE_DIR "${_REALPATH_CMAKE_ECLIPSE_EXECUTABLE}" PATH )
file ( GLOB _ECLIPSE_FEATURE_DIR "${_ECLIPSE_DIR}/features/org.eclipse.platform*" )
if ( APPLE AND NOT _ECLIPSE_FEATURE_DIR )
file ( GLOB _ECLIPSE_FEATURE_DIR "${_ECLIPSE_DIR}/../../../features/org.eclipse.platform*" )
endif ( )
if ( "${_ECLIPSE_FEATURE_DIR}" MATCHES ".+org.eclipse.platform_([0-9]+\\.[0-9]+).+" )
set ( _ECLIPSE_VERSION ${ CMAKE_MATCH_1 } )
endif ( )
endif ( )
if ( _ECLIPSE_VERSION )
message ( STATUS "Found Eclipse version ${_ECLIPSE_VERSION} (${_ECLIPSE_VERSION_NAME_${_ECLIPSE_VERSION}})" )
else ( )
set ( _ECLIPSE_VERSION "3.6" )
message ( STATUS "Could not determine Eclipse version, assuming at least ${_ECLIPSE_VERSION} (${_ECLIPSE_VERSION_NAME_${_ECLIPSE_VERSION}}). Adjust CMAKE_ECLIPSE_VERSION if this is wrong." )
endif ( )
set ( CMAKE_ECLIPSE_VERSION "${_ECLIPSE_VERSION} (${_ECLIPSE_VERSION_NAME_${_ECLIPSE_VERSION}})" CACHE STRING "The version of Eclipse. If Eclipse has not been found, 3.6 (Helios) is assumed." )
2012-08-13 21:47:32 +04:00
else ( )
2013-09-19 02:53:38 +04:00
message ( STATUS "Eclipse version is set to ${CMAKE_ECLIPSE_VERSION}. Adjust CMAKE_ECLIPSE_VERSION if this is wrong." )
2012-08-13 21:47:32 +04:00
endif ( )
2011-10-15 23:04:23 +04:00
2012-08-13 21:47:32 +04:00
set_property ( CACHE CMAKE_ECLIPSE_VERSION PROPERTY STRINGS "3.2 (${_ECLIPSE_VERSION_NAME_3.2})"
2011-10-15 20:43:27 +04:00
" 3 . 3 ( ${ _ECLIPSE_VERSION_NAME_3.3 } ) "
" 3 . 4 ( ${ _ECLIPSE_VERSION_NAME_3.4 } ) "
" 3 . 5 ( ${ _ECLIPSE_VERSION_NAME_3.5 } ) "
" 3 . 6 ( ${ _ECLIPSE_VERSION_NAME_3.6 } ) "
2012-07-28 13:40:08 +04:00
" 3 . 7 ( ${ _ECLIPSE_VERSION_NAME_3.7 } ) "
" 4 . 2 ( ${ _ECLIPSE_VERSION_NAME_4.2 } ) "
2013-09-19 02:58:25 +04:00
" 4 . 3 ( ${ _ECLIPSE_VERSION_NAME_4.3 } ) "
2012-07-28 13:40:08 +04:00
)
2012-08-13 21:47:32 +04:00
endfunction ( )
2011-10-15 20:43:27 +04:00
2013-09-19 02:14:13 +04:00
_find_eclipse_version ( )
2011-10-15 20:43:27 +04:00
2011-10-23 16:33:25 +04:00
# Try to find out how many CPUs we have and set the -j argument for make accordingly
2012-08-13 21:47:32 +04:00
set ( _CMAKE_ECLIPSE_INITIAL_MAKE_ARGS "" )
2011-10-23 16:33:25 +04:00
2012-08-13 21:47:32 +04:00
include ( ProcessorCount )
2013-09-19 02:14:13 +04:00
processorcount ( _CMAKE_ECLIPSE_PROCESSOR_COUNT )
2011-10-23 16:33:25 +04:00
# Only set -j if we are under UNIX and if the make-tool used actually has "make" in the name
# (we may also get here in the future e.g. for ninja)
2012-08-13 21:47:32 +04:00
if ( "${_CMAKE_ECLIPSE_PROCESSOR_COUNT}" GREATER 1 AND UNIX AND "${CMAKE_MAKE_PROGRAM}" MATCHES make )
set ( _CMAKE_ECLIPSE_INITIAL_MAKE_ARGS "-j${_CMAKE_ECLIPSE_PROCESSOR_COUNT}" )
endif ( )
2011-10-23 16:33:25 +04:00
2010-12-12 18:52:20 +03:00
# This variable is used by the Eclipse generator and appended to the make invocation commands.
2012-08-13 21:47:32 +04:00
set ( CMAKE_ECLIPSE_MAKE_ARGUMENTS "${_CMAKE_ECLIPSE_INITIAL_MAKE_ARGS}" CACHE STRING "Additional command line arguments when Eclipse invokes make. Enter e.g. -j<some_number> to get parallel builds" )
2009-05-12 23:11:16 +04:00
2012-10-18 01:45:02 +04:00
set ( CMAKE_ECLIPSE_GENERATE_LINKED_RESOURCES TRUE CACHE BOOL "If disabled, CMake will not generate linked resource to the subprojects and to the source files within targets" )
2010-12-13 23:53:11 +03:00
# This variable is used by the Eclipse generator in out-of-source builds only.
2012-08-13 21:47:32 +04:00
set ( CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT FALSE CACHE BOOL "If enabled, CMake will generate a source project for Eclipse in CMAKE_SOURCE_DIR" )
mark_as_advanced ( CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT )
2010-12-13 23:53:11 +03:00
2011-08-02 03:46:39 +04:00
# Determine builtin macros and include dirs:
2012-08-13 21:47:32 +04:00
include ( ${ CMAKE_CURRENT_LIST_DIR } /CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake )