CMakeFindEclipseCDT4.cmake 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. #=============================================================================
  2. # Copyright 2009 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. # This file is included in CMakeSystemSpecificInformation.cmake if
  14. # the Eclipse CDT4 extra generator has been selected.
  15. find_program(CMAKE_ECLIPSE_EXECUTABLE NAMES eclipse DOC "The Eclipse executable")
  16. function(_FIND_ECLIPSE_VERSION)
  17. # This code is in a function so the variables used here have only local scope
  18. # Set up a map with the names of the Eclipse releases:
  19. set(_ECLIPSE_VERSION_NAME_ "Unknown" )
  20. set(_ECLIPSE_VERSION_NAME_3.2 "Callisto" )
  21. set(_ECLIPSE_VERSION_NAME_3.3 "Europa" )
  22. set(_ECLIPSE_VERSION_NAME_3.4 "Ganymede" )
  23. set(_ECLIPSE_VERSION_NAME_3.5 "Galileo" )
  24. set(_ECLIPSE_VERSION_NAME_3.6 "Helios" )
  25. set(_ECLIPSE_VERSION_NAME_3.7 "Indigo" )
  26. set(_ECLIPSE_VERSION_NAME_4.2 "Juno" )
  27. set(_ECLIPSE_VERSION_NAME_4.3 "Kepler" )
  28. set(_ECLIPSE_VERSION_NAME_4.4 "Luna" )
  29. set(_ECLIPSE_VERSION_NAME_4.5 "Mars" )
  30. if(NOT DEFINED CMAKE_ECLIPSE_VERSION)
  31. if(CMAKE_ECLIPSE_EXECUTABLE)
  32. # use REALPATH to resolve symlinks (http://public.kitware.com/Bug/view.php?id=13036)
  33. get_filename_component(_REALPATH_CMAKE_ECLIPSE_EXECUTABLE "${CMAKE_ECLIPSE_EXECUTABLE}" REALPATH)
  34. get_filename_component(_ECLIPSE_DIR "${_REALPATH_CMAKE_ECLIPSE_EXECUTABLE}" PATH)
  35. file(GLOB _ECLIPSE_FEATURE_DIR "${_ECLIPSE_DIR}/features/org.eclipse.platform*")
  36. if(APPLE AND NOT _ECLIPSE_FEATURE_DIR)
  37. file(GLOB _ECLIPSE_FEATURE_DIR "${_ECLIPSE_DIR}/../../../features/org.eclipse.platform*")
  38. endif()
  39. if("${_ECLIPSE_FEATURE_DIR}" MATCHES ".+org.eclipse.platform_([0-9]+\\.[0-9]+).+")
  40. set(_ECLIPSE_VERSION ${CMAKE_MATCH_1})
  41. endif()
  42. endif()
  43. if(_ECLIPSE_VERSION)
  44. message(STATUS "Found Eclipse version ${_ECLIPSE_VERSION} (${_ECLIPSE_VERSION_NAME_${_ECLIPSE_VERSION}})")
  45. else()
  46. set(_ECLIPSE_VERSION "3.6" )
  47. 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.")
  48. endif()
  49. 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.")
  50. else()
  51. message(STATUS "Eclipse version is set to ${CMAKE_ECLIPSE_VERSION}. Adjust CMAKE_ECLIPSE_VERSION if this is wrong.")
  52. endif()
  53. set_property(CACHE CMAKE_ECLIPSE_VERSION PROPERTY STRINGS "3.2 (${_ECLIPSE_VERSION_NAME_3.2})"
  54. "3.3 (${_ECLIPSE_VERSION_NAME_3.3})"
  55. "3.4 (${_ECLIPSE_VERSION_NAME_3.4})"
  56. "3.5 (${_ECLIPSE_VERSION_NAME_3.5})"
  57. "3.6 (${_ECLIPSE_VERSION_NAME_3.6})"
  58. "3.7 (${_ECLIPSE_VERSION_NAME_3.7})"
  59. "4.2 (${_ECLIPSE_VERSION_NAME_4.2})"
  60. "4.3 (${_ECLIPSE_VERSION_NAME_4.3})"
  61. "4.4 (${_ECLIPSE_VERSION_NAME_4.4})"
  62. "4.5 (${_ECLIPSE_VERSION_NAME_4.5})"
  63. )
  64. endfunction()
  65. _find_eclipse_version()
  66. # Try to find out how many CPUs we have and set the -j argument for make accordingly
  67. set(_CMAKE_ECLIPSE_INITIAL_MAKE_ARGS "")
  68. include(ProcessorCount)
  69. processorcount(_CMAKE_ECLIPSE_PROCESSOR_COUNT)
  70. # Only set -j if we are under UNIX and if the make-tool used actually has "make" in the name
  71. # (we may also get here in the future e.g. for ninja)
  72. if("${_CMAKE_ECLIPSE_PROCESSOR_COUNT}" GREATER 1 AND CMAKE_HOST_UNIX AND "${CMAKE_MAKE_PROGRAM}" MATCHES make)
  73. set(_CMAKE_ECLIPSE_INITIAL_MAKE_ARGS "-j${_CMAKE_ECLIPSE_PROCESSOR_COUNT}")
  74. endif()
  75. # This variable is used by the Eclipse generator and appended to the make invocation commands.
  76. 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")
  77. 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")
  78. # This variable is used by the Eclipse generator in out-of-source builds only.
  79. set(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT FALSE CACHE BOOL "If enabled, CMake will generate a source project for Eclipse in CMAKE_SOURCE_DIR")
  80. mark_as_advanced(CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT)
  81. # Determine builtin macros and include dirs:
  82. include(${CMAKE_CURRENT_LIST_DIR}/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake)