CMakeCommonLanguageInclude.cmake 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. #=============================================================================
  2. # Copyright 2004-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 has flags that are shared across languages and sets
  14. # cache values that can be initialized in the platform-compiler.cmake file
  15. # it may be included by more than one language.
  16. if(NOT "x$ENV{LDFLAGS}" STREQUAL "x")
  17. set (CMAKE_EXE_LINKER_FLAGS_INIT "${CMAKE_EXE_LINKER_FLAGS_INIT} $ENV{LDFLAGS}")
  18. set (CMAKE_SHARED_LINKER_FLAGS_INIT "${CMAKE_SHARED_LINKER_FLAGS_INIT} $ENV{LDFLAGS}")
  19. set (CMAKE_MODULE_LINKER_FLAGS_INIT "${CMAKE_MODULE_LINKER_FLAGS_INIT} $ENV{LDFLAGS}")
  20. endif()
  21. if(NOT CMAKE_NOT_USING_CONFIG_FLAGS)
  22. # default build type is none
  23. if(NOT CMAKE_NO_BUILD_TYPE)
  24. set (CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE_INIT} CACHE STRING
  25. "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.")
  26. endif()
  27. set (CMAKE_EXE_LINKER_FLAGS_DEBUG ${CMAKE_EXE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING
  28. "Flags used by the linker during debug builds.")
  29. set (CMAKE_EXE_LINKER_FLAGS_MINSIZEREL ${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL_INIT} CACHE STRING
  30. "Flags used by the linker during release minsize builds.")
  31. set (CMAKE_EXE_LINKER_FLAGS_RELEASE ${CMAKE_EXE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING
  32. "Flags used by the linker during release builds.")
  33. set (CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
  34. ${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING
  35. "Flags used by the linker during Release with Debug Info builds.")
  36. set (CMAKE_SHARED_LINKER_FLAGS_DEBUG ${CMAKE_SHARED_LINKER_FLAGS_DEBUG_INIT} CACHE STRING
  37. "Flags used by the linker during debug builds.")
  38. set (CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL ${CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL_INIT}
  39. CACHE STRING
  40. "Flags used by the linker during release minsize builds.")
  41. set (CMAKE_SHARED_LINKER_FLAGS_RELEASE ${CMAKE_SHARED_LINKER_FLAGS_RELEASE_INIT} CACHE STRING
  42. "Flags used by the linker during release builds.")
  43. set (CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
  44. ${CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING
  45. "Flags used by the linker during Release with Debug Info builds.")
  46. set (CMAKE_MODULE_LINKER_FLAGS_DEBUG ${CMAKE_MODULE_LINKER_FLAGS_DEBUG_INIT} CACHE STRING
  47. "Flags used by the linker during debug builds.")
  48. set (CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL ${CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL_INIT}
  49. CACHE STRING
  50. "Flags used by the linker during release minsize builds.")
  51. set (CMAKE_MODULE_LINKER_FLAGS_RELEASE ${CMAKE_MODULE_LINKER_FLAGS_RELEASE_INIT} CACHE STRING
  52. "Flags used by the linker during release builds.")
  53. set (CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
  54. ${CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING
  55. "Flags used by the linker during Release with Debug Info builds.")
  56. set (CMAKE_STATIC_LINKER_FLAGS_DEBUG ${CMAKE_STATIC_LINKER_FLAGS_DEBUG_INIT} CACHE STRING
  57. "Flags used by the linker during debug builds.")
  58. set (CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL ${CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL_INIT}
  59. CACHE STRING
  60. "Flags used by the linker during release minsize builds.")
  61. set (CMAKE_STATIC_LINKER_FLAGS_RELEASE ${CMAKE_STATIC_LINKER_FLAGS_RELEASE_INIT} CACHE STRING
  62. "Flags used by the linker during release builds.")
  63. set (CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
  64. ${CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO_INIT} CACHE STRING
  65. "Flags used by the linker during Release with Debug Info builds.")
  66. endif()
  67. # executable linker flags
  68. set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS_INIT}"
  69. CACHE STRING "Flags used by the linker.")
  70. # shared linker flags
  71. set (CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS_INIT}"
  72. CACHE STRING "Flags used by the linker during the creation of dll's.")
  73. # module linker flags
  74. set (CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS_INIT}"
  75. CACHE STRING "Flags used by the linker during the creation of modules.")
  76. # static linker flags
  77. set (CMAKE_STATIC_LINKER_FLAGS "${CMAKE_STATIC_LINKER_FLAGS_INIT}"
  78. CACHE STRING "Flags used by the linker during the creation of static libraries.")
  79. # Alias the build tool variable for backward compatibility.
  80. set(CMAKE_BUILD_TOOL ${CMAKE_MAKE_PROGRAM})
  81. mark_as_advanced(
  82. CMAKE_VERBOSE_MAKEFILE
  83. CMAKE_EXE_LINKER_FLAGS
  84. CMAKE_EXE_LINKER_FLAGS_DEBUG
  85. CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
  86. CMAKE_EXE_LINKER_FLAGS_RELEASE
  87. CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
  88. CMAKE_SHARED_LINKER_FLAGS
  89. CMAKE_SHARED_LINKER_FLAGS_DEBUG
  90. CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
  91. CMAKE_SHARED_LINKER_FLAGS_RELEASE
  92. CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
  93. CMAKE_MODULE_LINKER_FLAGS
  94. CMAKE_MODULE_LINKER_FLAGS_DEBUG
  95. CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
  96. CMAKE_MODULE_LINKER_FLAGS_RELEASE
  97. CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
  98. CMAKE_STATIC_LINKER_FLAGS
  99. CMAKE_STATIC_LINKER_FLAGS_DEBUG
  100. CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
  101. CMAKE_STATIC_LINKER_FLAGS_RELEASE
  102. CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
  103. )