InstallRequiredSystemLibraries.cmake 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. # By including this file, all files in the CMAKE_INSTALL_DEBUG_LIBRARIES,
  2. # will be installed with INSTALL_PROGRAMS into /bin for WIN32 and /lib
  3. # for non-win32. If CMAKE_SKIP_INSTALL_RULES is set to TRUE before including
  4. # this file, then the INSTALL command is not called. The use can use
  5. # the variable CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS to use a custom install
  6. # command and install them into any directory they want.
  7. # If it is the MSVC compiler, then the microsoft run
  8. # time libraries will be found add automatically added to the
  9. # CMAKE_INSTALL_DEBUG_LIBRARIES, and installed.
  10. # If CMAKE_INSTALL_DEBUG_LIBRARIES is set and it is the MSVC
  11. # compiler, then the debug libraries are installed when available.
  12. # If CMAKE_INSTALL_MFC_LIBRARIES is set then the MFC run time
  13. # libraries are installed as well as the CRT run time libraries.
  14. #=============================================================================
  15. # Copyright 2006-2009 Kitware, Inc.
  16. #
  17. # Distributed under the OSI-approved BSD License (the "License");
  18. # see accompanying file Copyright.txt for details.
  19. #
  20. # This software is distributed WITHOUT ANY WARRANTY; without even the
  21. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  22. # See the License for more information.
  23. #=============================================================================
  24. # (To distributed this file outside of CMake, substitute the full
  25. # License text for the above reference.)
  26. IF(MSVC)
  27. FILE(TO_CMAKE_PATH "$ENV{SYSTEMROOT}" SYSTEMROOT)
  28. IF(MSVC70)
  29. SET(__install__libs
  30. "${SYSTEMROOT}/system32/msvcp70.dll"
  31. "${SYSTEMROOT}/system32/msvcr70.dll"
  32. )
  33. ENDIF(MSVC70)
  34. IF(MSVC71)
  35. SET(__install__libs
  36. "${SYSTEMROOT}/system32/msvcp71.dll"
  37. "${SYSTEMROOT}/system32/msvcr71.dll"
  38. )
  39. ENDIF(MSVC71)
  40. IF(CMAKE_CL_64)
  41. SET(CMAKE_MSVC_ARCH amd64)
  42. ELSE(CMAKE_CL_64)
  43. SET(CMAKE_MSVC_ARCH x86)
  44. ENDIF(CMAKE_CL_64)
  45. GET_FILENAME_COMPONENT(devenv_dir "${CMAKE_MAKE_PROGRAM}" PATH)
  46. GET_FILENAME_COMPONENT(base_dir "${devenv_dir}/../.." ABSOLUTE)
  47. IF(MSVC80)
  48. # Find the runtime library redistribution directory.
  49. FIND_PATH(MSVC80_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest
  50. PATHS
  51. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0;InstallDir]/../../VC/redist"
  52. "${base_dir}/VC/redist"
  53. )
  54. MARK_AS_ADVANCED(MSVC80_REDIST_DIR)
  55. SET(MSVC80_CRT_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT")
  56. # Install the manifest that allows DLLs to be loaded from the
  57. # directory containing the executable.
  58. SET(__install__libs
  59. "${MSVC80_CRT_DIR}/Microsoft.VC80.CRT.manifest"
  60. "${MSVC80_CRT_DIR}/msvcm80.dll"
  61. "${MSVC80_CRT_DIR}/msvcp80.dll"
  62. "${MSVC80_CRT_DIR}/msvcr80.dll"
  63. )
  64. IF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  65. SET(MSVC80_CRT_DIR
  66. "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugCRT")
  67. SET(__install__libs ${__install__libs}
  68. "${MSVC80_CRT_DIR}/Microsoft.VC80.DebugCRT.manifest"
  69. "${MSVC80_CRT_DIR}/msvcm80d.dll"
  70. "${MSVC80_CRT_DIR}/msvcp80d.dll"
  71. "${MSVC80_CRT_DIR}/msvcr80d.dll"
  72. )
  73. ENDIF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  74. ENDIF(MSVC80)
  75. IF(MSVC90)
  76. # Find the runtime library redistribution directory.
  77. FIND_PATH(MSVC90_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest
  78. PATHS
  79. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\9.0;InstallDir]/../../VC/redist"
  80. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\9.0;InstallDir]/../../VC/redist"
  81. "${base_dir}/VC/redist"
  82. )
  83. MARK_AS_ADVANCED(MSVC90_REDIST_DIR)
  84. SET(MSVC90_CRT_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT")
  85. # Install the manifest that allows DLLs to be loaded from the
  86. # directory containing the executable.
  87. SET(__install__libs
  88. "${MSVC90_CRT_DIR}/Microsoft.VC90.CRT.manifest"
  89. "${MSVC90_CRT_DIR}/msvcm90.dll"
  90. "${MSVC90_CRT_DIR}/msvcp90.dll"
  91. "${MSVC90_CRT_DIR}/msvcr90.dll"
  92. )
  93. IF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  94. SET(MSVC90_CRT_DIR
  95. "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugCRT")
  96. SET(__install__libs ${__install__libs}
  97. "${MSVC90_CRT_DIR}/Microsoft.VC90.DebugCRT.manifest"
  98. "${MSVC90_CRT_DIR}/msvcm90d.dll"
  99. "${MSVC90_CRT_DIR}/msvcp90d.dll"
  100. "${MSVC90_CRT_DIR}/msvcr90d.dll"
  101. )
  102. ENDIF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  103. ENDIF(MSVC90)
  104. IF(CMAKE_INSTALL_MFC_LIBRARIES)
  105. IF(MSVC70)
  106. SET(__install__libs ${__install__libs}
  107. "${SYSTEMROOT}/system32/mfc70.dll"
  108. )
  109. ENDIF(MSVC70)
  110. IF(MSVC71)
  111. SET(__install__libs ${__install__libs}
  112. "${SYSTEMROOT}/system32/mfc71.dll"
  113. )
  114. ENDIF(MSVC71)
  115. IF(MSVC80)
  116. IF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  117. SET(MSVC80_MFC_DIR
  118. "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugMFC")
  119. SET(__install__libs ${__install__libs}
  120. "${MSVC80_MFC_DIR}/Microsoft.VC80.DebugMFC.manifest"
  121. "${MSVC80_MFC_DIR}/mfc80d.dll"
  122. "${MSVC80_MFC_DIR}/mfc80ud.dll"
  123. "${MSVC80_MFC_DIR}/mfcm80d.dll"
  124. "${MSVC80_MFC_DIR}/mfcm80ud.dll"
  125. )
  126. ENDIF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  127. SET(MSVC80_MFC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFC")
  128. # Install the manifest that allows DLLs to be loaded from the
  129. # directory containing the executable.
  130. SET(__install__libs ${__install__libs}
  131. "${MSVC80_MFC_DIR}/Microsoft.VC80.MFC.manifest"
  132. "${MSVC80_MFC_DIR}/mfc80.dll"
  133. "${MSVC80_MFC_DIR}/mfc80u.dll"
  134. "${MSVC80_MFC_DIR}/mfcm80.dll"
  135. "${MSVC80_MFC_DIR}/mfcm80u.dll"
  136. )
  137. # include the language dll's for vs8 as well as the actuall dll's
  138. SET(MSVC80_MFCLOC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFCLOC")
  139. # Install the manifest that allows DLLs to be loaded from the
  140. # directory containing the executable.
  141. SET(__install__libs ${__install__libs}
  142. "${MSVC80_MFCLOC_DIR}/Microsoft.VC80.MFCLOC.manifest"
  143. "${MSVC80_MFCLOC_DIR}/mfc80chs.dll"
  144. "${MSVC80_MFCLOC_DIR}/mfc80cht.dll"
  145. "${MSVC80_MFCLOC_DIR}/mfc80enu.dll"
  146. "${MSVC80_MFCLOC_DIR}/mfc80esp.dll"
  147. "${MSVC80_MFCLOC_DIR}/mfc80deu.dll"
  148. "${MSVC80_MFCLOC_DIR}/mfc80fra.dll"
  149. "${MSVC80_MFCLOC_DIR}/mfc80ita.dll"
  150. "${MSVC80_MFCLOC_DIR}/mfc80jpn.dll"
  151. "${MSVC80_MFCLOC_DIR}/mfc80kor.dll"
  152. )
  153. ENDIF(MSVC80)
  154. IF(MSVC90)
  155. IF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  156. SET(MSVC90_MFC_DIR
  157. "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugMFC")
  158. SET(__install__libs ${__install__libs}
  159. "${MSVC90_MFC_DIR}/Microsoft.VC90.DebugMFC.manifest"
  160. "${MSVC90_MFC_DIR}/mfc90d.dll"
  161. "${MSVC90_MFC_DIR}/mfc90ud.dll"
  162. "${MSVC90_MFC_DIR}/mfcm90d.dll"
  163. "${MSVC90_MFC_DIR}/mfcm90ud.dll"
  164. )
  165. ENDIF(CMAKE_INSTALL_DEBUG_LIBRARIES)
  166. SET(MSVC90_MFC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFC")
  167. # Install the manifest that allows DLLs to be loaded from the
  168. # directory containing the executable.
  169. SET(__install__libs ${__install__libs}
  170. "${MSVC90_MFC_DIR}/Microsoft.VC90.MFC.manifest"
  171. "${MSVC90_MFC_DIR}/mfc90.dll"
  172. "${MSVC90_MFC_DIR}/mfc90u.dll"
  173. "${MSVC90_MFC_DIR}/mfcm90.dll"
  174. "${MSVC90_MFC_DIR}/mfcm90u.dll"
  175. )
  176. # include the language dll's for vs9 as well as the actuall dll's
  177. SET(MSVC90_MFCLOC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFCLOC")
  178. # Install the manifest that allows DLLs to be loaded from the
  179. # directory containing the executable.
  180. SET(__install__libs ${__install__libs}
  181. "${MSVC90_MFCLOC_DIR}/Microsoft.VC90.MFCLOC.manifest"
  182. "${MSVC90_MFCLOC_DIR}/mfc90chs.dll"
  183. "${MSVC90_MFCLOC_DIR}/mfc90cht.dll"
  184. "${MSVC90_MFCLOC_DIR}/mfc90enu.dll"
  185. "${MSVC90_MFCLOC_DIR}/mfc90esp.dll"
  186. "${MSVC90_MFCLOC_DIR}/mfc90deu.dll"
  187. "${MSVC90_MFCLOC_DIR}/mfc90fra.dll"
  188. "${MSVC90_MFCLOC_DIR}/mfc90ita.dll"
  189. "${MSVC90_MFCLOC_DIR}/mfc90jpn.dll"
  190. "${MSVC90_MFCLOC_DIR}/mfc90kor.dll"
  191. )
  192. ENDIF(MSVC90)
  193. ENDIF(CMAKE_INSTALL_MFC_LIBRARIES)
  194. FOREACH(lib
  195. ${__install__libs}
  196. )
  197. IF(EXISTS ${lib})
  198. SET(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS
  199. ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
  200. ENDIF(EXISTS ${lib})
  201. ENDFOREACH(lib)
  202. ENDIF(MSVC)
  203. # Include system runtime libraries in the installation if any are
  204. # specified by CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS.
  205. IF(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS)
  206. IF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP)
  207. IF(WIN32)
  208. INSTALL_PROGRAMS(/bin ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS})
  209. ELSE(WIN32)
  210. INSTALL_PROGRAMS(/lib ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS})
  211. ENDIF(WIN32)
  212. ENDIF(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP)
  213. ENDIF(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS)