CMakeGenericSystem.cmake 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. set(CMAKE_SHARED_LIBRARY_C_FLAGS "") # -pic
  14. set(CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-shared") # -shared
  15. set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") # +s, flag for exe link to use shared lib
  16. set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG "") # -rpath
  17. set(CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG_SEP "") # : or empty
  18. set(CMAKE_INCLUDE_FLAG_C "-I") # -I
  19. set(CMAKE_INCLUDE_FLAG_C_SEP "") # , or empty
  20. set(CMAKE_LIBRARY_PATH_FLAG "-L")
  21. set(CMAKE_LIBRARY_PATH_TERMINATOR "") # for the Digital Mars D compiler the link paths have to be terminated with a "/"
  22. set(CMAKE_LINK_LIBRARY_FLAG "-l")
  23. set(CMAKE_LINK_LIBRARY_SUFFIX "")
  24. set(CMAKE_STATIC_LIBRARY_PREFIX "lib")
  25. set(CMAKE_STATIC_LIBRARY_SUFFIX ".a")
  26. set(CMAKE_SHARED_LIBRARY_PREFIX "lib") # lib
  27. set(CMAKE_SHARED_LIBRARY_SUFFIX ".so") # .so
  28. set(CMAKE_EXECUTABLE_SUFFIX "") # .exe
  29. set(CMAKE_DL_LIBS "dl")
  30. set(CMAKE_FIND_LIBRARY_PREFIXES "lib")
  31. set(CMAKE_FIND_LIBRARY_SUFFIXES ".so" ".a")
  32. # basically all general purpose OSs support shared libs
  33. set_property(GLOBAL PROPERTY TARGET_SUPPORTS_SHARED_LIBS TRUE)
  34. set (CMAKE_SKIP_RPATH "NO" CACHE BOOL
  35. "If set, runtime paths are not added when using shared libraries.")
  36. set (CMAKE_SKIP_INSTALL_RPATH "NO" CACHE BOOL
  37. "If set, runtime paths are not added when installing shared libraries, but are added when building.")
  38. set(CMAKE_VERBOSE_MAKEFILE FALSE CACHE BOOL "If this value is on, makefiles will be generated without the .SILENT directive, and all commands will be echoed to the console during the make. This is useful for debugging only. With Visual Studio IDE projects all commands are done without /nologo.")
  39. if(CMAKE_GENERATOR MATCHES "Make")
  40. set(CMAKE_COLOR_MAKEFILE ON CACHE BOOL
  41. "Enable/Disable color output during build."
  42. )
  43. mark_as_advanced(CMAKE_COLOR_MAKEFILE)
  44. if(DEFINED CMAKE_RULE_MESSAGES)
  45. set_property(GLOBAL PROPERTY RULE_MESSAGES ${CMAKE_RULE_MESSAGES})
  46. endif()
  47. if(DEFINED CMAKE_TARGET_MESSAGES)
  48. set_property(GLOBAL PROPERTY TARGET_MESSAGES ${CMAKE_TARGET_MESSAGES})
  49. endif()
  50. if(CMAKE_GENERATOR MATCHES "Unix Makefiles")
  51. set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL
  52. "Enable/Disable output of compile commands during generation."
  53. )
  54. mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS)
  55. endif()
  56. endif()
  57. if(CMAKE_GENERATOR MATCHES "Ninja")
  58. set(CMAKE_EXPORT_COMPILE_COMMANDS OFF CACHE BOOL
  59. "Enable/Disable output of compile commands during generation."
  60. )
  61. mark_as_advanced(CMAKE_EXPORT_COMPILE_COMMANDS)
  62. endif()
  63. # GetDefaultWindowsPrefixBase
  64. #
  65. # Compute the base directory for CMAKE_INSTALL_PREFIX based on:
  66. # - is this 32-bit or 64-bit Windows
  67. # - is this 32-bit or 64-bit CMake running
  68. # - what architecture targets will be built
  69. #
  70. function(GetDefaultWindowsPrefixBase var)
  71. # Try to guess what architecture targets will end up being built as,
  72. # even if CMAKE_SIZEOF_VOID_P is not computed yet... We need to know
  73. # the architecture of the targets being built to choose the right
  74. # default value for CMAKE_INSTALL_PREFIX.
  75. #
  76. if("${CMAKE_GENERATOR}" MATCHES "(Win64|IA64)")
  77. set(arch_hint "x64")
  78. elseif("${CMAKE_GENERATOR}" MATCHES "ARM")
  79. set(arch_hint "ARM")
  80. elseif("${CMAKE_SIZEOF_VOID_P}" STREQUAL "8")
  81. set(arch_hint "x64")
  82. elseif("$ENV{LIB}" MATCHES "(amd64|ia64)")
  83. set(arch_hint "x64")
  84. endif()
  85. if(NOT arch_hint)
  86. set(arch_hint "x86")
  87. endif()
  88. # default env in a 64-bit app on Win64:
  89. # ProgramFiles=C:\Program Files
  90. # ProgramFiles(x86)=C:\Program Files (x86)
  91. # ProgramW6432=C:\Program Files
  92. #
  93. # default env in a 32-bit app on Win64:
  94. # ProgramFiles=C:\Program Files (x86)
  95. # ProgramFiles(x86)=C:\Program Files (x86)
  96. # ProgramW6432=C:\Program Files
  97. #
  98. # default env in a 32-bit app on Win32:
  99. # ProgramFiles=C:\Program Files
  100. # ProgramFiles(x86) NOT DEFINED
  101. # ProgramW6432 NOT DEFINED
  102. # By default, use the ProgramFiles env var as the base value of
  103. # CMAKE_INSTALL_PREFIX:
  104. #
  105. set(_PREFIX_ENV_VAR "ProgramFiles")
  106. if ("$ENV{ProgramW6432}" STREQUAL "")
  107. # running on 32-bit Windows
  108. # must be a 32-bit CMake, too...
  109. #message("guess: this is a 32-bit CMake running on 32-bit Windows")
  110. else()
  111. # running on 64-bit Windows
  112. if ("$ENV{ProgramW6432}" STREQUAL "$ENV{ProgramFiles}")
  113. # 64-bit CMake
  114. #message("guess: this is a 64-bit CMake running on 64-bit Windows")
  115. if(NOT "${arch_hint}" STREQUAL "x64")
  116. # building 32-bit targets
  117. set(_PREFIX_ENV_VAR "ProgramFiles(x86)")
  118. endif()
  119. else()
  120. # 32-bit CMake
  121. #message("guess: this is a 32-bit CMake running on 64-bit Windows")
  122. if("${arch_hint}" STREQUAL "x64")
  123. # building 64-bit targets
  124. set(_PREFIX_ENV_VAR "ProgramW6432")
  125. endif()
  126. endif()
  127. endif()
  128. #if("${arch_hint}" STREQUAL "x64")
  129. # message("guess: you are building a 64-bit app")
  130. #else()
  131. # message("guess: you are building a 32-bit app")
  132. #endif()
  133. if(NOT "$ENV{${_PREFIX_ENV_VAR}}" STREQUAL "")
  134. file(TO_CMAKE_PATH "$ENV{${_PREFIX_ENV_VAR}}" _base)
  135. elseif(NOT "$ENV{SystemDrive}" STREQUAL "")
  136. set(_base "$ENV{SystemDrive}/Program Files")
  137. else()
  138. set(_base "C:/Program Files")
  139. endif()
  140. set(${var} "${_base}" PARENT_SCOPE)
  141. endfunction()
  142. # Set a variable to indicate whether the value of CMAKE_INSTALL_PREFIX
  143. # was initialized by the block below. This is useful for user
  144. # projects to change the default prefix while still allowing the
  145. # command line to override it.
  146. if(NOT DEFINED CMAKE_INSTALL_PREFIX)
  147. set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT 1)
  148. endif()
  149. # Choose a default install prefix for this platform.
  150. if(CMAKE_HOST_UNIX)
  151. set(CMAKE_INSTALL_PREFIX "/usr/local"
  152. CACHE PATH "Install path prefix, prepended onto install directories.")
  153. else()
  154. GetDefaultWindowsPrefixBase(CMAKE_GENERIC_PROGRAM_FILES)
  155. set(CMAKE_INSTALL_PREFIX
  156. "${CMAKE_GENERIC_PROGRAM_FILES}/${PROJECT_NAME}"
  157. CACHE PATH "Install path prefix, prepended onto install directories.")
  158. set(CMAKE_GENERIC_PROGRAM_FILES)
  159. endif()
  160. # Set a variable which will be used as component name in install() commands
  161. # where no COMPONENT has been given:
  162. set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "Unspecified")
  163. mark_as_advanced(
  164. CMAKE_SKIP_RPATH
  165. CMAKE_SKIP_INSTALL_RPATH
  166. CMAKE_VERBOSE_MAKEFILE
  167. )