InstallRequiredSystemLibraries.cmake 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. #.rst:
  2. # InstallRequiredSystemLibraries
  3. # ------------------------------
  4. #
  5. # Include this module to search for compiler-provided system runtime
  6. # libraries and add install rules for them. Some optional variables
  7. # may be set prior to including the module to adjust behavior:
  8. #
  9. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS``
  10. # Specify additional runtime libraries that may not be detected.
  11. # After inclusion any detected libraries will be appended to this.
  12. #
  13. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP``
  14. # Set to TRUE to skip calling the :command:`install(PROGRAMS)` command to
  15. # allow the includer to specify its own install rule, using the value of
  16. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS`` to get the list of libraries.
  17. #
  18. # ``CMAKE_INSTALL_DEBUG_LIBRARIES``
  19. # Set to TRUE to install the debug runtime libraries when available
  20. # with MSVC tools.
  21. #
  22. # ``CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY``
  23. # Set to TRUE to install only the debug runtime libraries with MSVC
  24. # tools even if the release runtime libraries are also available.
  25. #
  26. # ``CMAKE_INSTALL_UCRT_LIBRARIES``
  27. # Set to TRUE to install the Windows Universal CRT libraries for
  28. # app-local deployment (e.g. to Windows XP). This is meaningful
  29. # only with MSVC from Visual Studio 2015 or higher.
  30. #
  31. # ``CMAKE_INSTALL_MFC_LIBRARIES``
  32. # Set to TRUE to install the MSVC MFC runtime libraries.
  33. #
  34. # ``CMAKE_INSTALL_OPENMP_LIBRARIES``
  35. # Set to TRUE to install the MSVC OpenMP runtime libraries
  36. #
  37. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION``
  38. # Specify the :command:`install(PROGRAMS)` command ``DESTINATION``
  39. # option. If not specified, the default is ``bin`` on Windows
  40. # and ``lib`` elsewhere.
  41. #
  42. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS``
  43. # Set to TRUE to disable warnings about required library files that
  44. # do not exist. (For example, Visual Studio Express editions may
  45. # not provide the redistributable files.)
  46. #
  47. # ``CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT``
  48. # Specify the :command:`install(PROGRAMS)` command ``COMPONENT``
  49. # option. If not specified, no such option will be used.
  50. #=============================================================================
  51. # Copyright 2006-2015 Kitware, Inc.
  52. #
  53. # Distributed under the OSI-approved BSD License (the "License");
  54. # see accompanying file Copyright.txt for details.
  55. #
  56. # This software is distributed WITHOUT ANY WARRANTY; without even the
  57. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  58. # See the License for more information.
  59. #=============================================================================
  60. # (To distribute this file outside of CMake, substitute the full
  61. # License text for the above reference.)
  62. if(MSVC)
  63. file(TO_CMAKE_PATH "$ENV{SYSTEMROOT}" SYSTEMROOT)
  64. if(CMAKE_CL_64)
  65. if(MSVC_VERSION GREATER 1599)
  66. # VS 10 and later:
  67. set(CMAKE_MSVC_ARCH x64)
  68. else()
  69. # VS 9 and earlier:
  70. set(CMAKE_MSVC_ARCH amd64)
  71. endif()
  72. else()
  73. set(CMAKE_MSVC_ARCH x86)
  74. endif()
  75. get_filename_component(devenv_dir "${CMAKE_MAKE_PROGRAM}" PATH)
  76. get_filename_component(base_dir "${devenv_dir}/../.." ABSOLUTE)
  77. if(MSVC70)
  78. set(__install__libs
  79. "${SYSTEMROOT}/system32/msvcp70.dll"
  80. "${SYSTEMROOT}/system32/msvcr70.dll"
  81. )
  82. endif()
  83. if(MSVC71)
  84. set(__install__libs
  85. "${SYSTEMROOT}/system32/msvcp71.dll"
  86. "${SYSTEMROOT}/system32/msvcr71.dll"
  87. )
  88. endif()
  89. if(MSVC80)
  90. # Find the runtime library redistribution directory.
  91. get_filename_component(msvc_install_dir
  92. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0;InstallDir]" ABSOLUTE)
  93. find_path(MSVC80_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest
  94. PATHS
  95. "${msvc_install_dir}/../../VC/redist"
  96. "${base_dir}/VC/redist"
  97. )
  98. mark_as_advanced(MSVC80_REDIST_DIR)
  99. set(MSVC80_CRT_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT")
  100. # Install the manifest that allows DLLs to be loaded from the
  101. # directory containing the executable.
  102. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  103. set(__install__libs
  104. "${MSVC80_CRT_DIR}/Microsoft.VC80.CRT.manifest"
  105. "${MSVC80_CRT_DIR}/msvcm80.dll"
  106. "${MSVC80_CRT_DIR}/msvcp80.dll"
  107. "${MSVC80_CRT_DIR}/msvcr80.dll"
  108. )
  109. else()
  110. set(__install__libs)
  111. endif()
  112. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  113. set(MSVC80_CRT_DIR
  114. "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugCRT")
  115. set(__install__libs ${__install__libs}
  116. "${MSVC80_CRT_DIR}/Microsoft.VC80.DebugCRT.manifest"
  117. "${MSVC80_CRT_DIR}/msvcm80d.dll"
  118. "${MSVC80_CRT_DIR}/msvcp80d.dll"
  119. "${MSVC80_CRT_DIR}/msvcr80d.dll"
  120. )
  121. endif()
  122. endif()
  123. if(MSVC90)
  124. # Find the runtime library redistribution directory.
  125. get_filename_component(msvc_install_dir
  126. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\9.0;InstallDir]" ABSOLUTE)
  127. get_filename_component(msvc_express_install_dir
  128. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\9.0;InstallDir]" ABSOLUTE)
  129. find_path(MSVC90_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest
  130. PATHS
  131. "${msvc_install_dir}/../../VC/redist"
  132. "${msvc_express_install_dir}/../../VC/redist"
  133. "${base_dir}/VC/redist"
  134. )
  135. mark_as_advanced(MSVC90_REDIST_DIR)
  136. set(MSVC90_CRT_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT")
  137. # Install the manifest that allows DLLs to be loaded from the
  138. # directory containing the executable.
  139. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  140. set(__install__libs
  141. "${MSVC90_CRT_DIR}/Microsoft.VC90.CRT.manifest"
  142. "${MSVC90_CRT_DIR}/msvcm90.dll"
  143. "${MSVC90_CRT_DIR}/msvcp90.dll"
  144. "${MSVC90_CRT_DIR}/msvcr90.dll"
  145. )
  146. else()
  147. set(__install__libs)
  148. endif()
  149. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  150. set(MSVC90_CRT_DIR
  151. "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugCRT")
  152. set(__install__libs ${__install__libs}
  153. "${MSVC90_CRT_DIR}/Microsoft.VC90.DebugCRT.manifest"
  154. "${MSVC90_CRT_DIR}/msvcm90d.dll"
  155. "${MSVC90_CRT_DIR}/msvcp90d.dll"
  156. "${MSVC90_CRT_DIR}/msvcr90d.dll"
  157. )
  158. endif()
  159. endif()
  160. macro(MSVCRT_FILES_FOR_VERSION version)
  161. set(v "${version}")
  162. # Find the runtime library redistribution directory.
  163. get_filename_component(msvc_install_dir
  164. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\${v}.0;InstallDir]" ABSOLUTE)
  165. set(programfilesx86 "ProgramFiles(x86)")
  166. find_path(MSVC${v}_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT
  167. PATHS
  168. "${msvc_install_dir}/../../VC/redist"
  169. "${base_dir}/VC/redist"
  170. "$ENV{ProgramFiles}/Microsoft Visual Studio ${v}.0/VC/redist"
  171. "$ENV{${programfilesx86}}/Microsoft Visual Studio ${v}.0/VC/redist"
  172. )
  173. mark_as_advanced(MSVC${v}_REDIST_DIR)
  174. set(MSVC${v}_CRT_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT")
  175. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  176. set(__install__libs
  177. "${MSVC${v}_CRT_DIR}/msvcp${v}0.dll"
  178. )
  179. if(NOT v VERSION_LESS 14)
  180. list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/vcruntime${v}0.dll")
  181. else()
  182. list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/msvcr${v}0.dll")
  183. endif()
  184. else()
  185. set(__install__libs)
  186. endif()
  187. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  188. set(MSVC${v}_CRT_DIR
  189. "${MSVC${v}_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugCRT")
  190. set(__install__libs ${__install__libs}
  191. "${MSVC${v}_CRT_DIR}/msvcp${v}0d.dll"
  192. )
  193. if(NOT v VERSION_LESS 14)
  194. list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/vcruntime${v}0d.dll")
  195. else()
  196. list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/msvcr${v}0d.dll")
  197. endif()
  198. endif()
  199. if(CMAKE_INSTALL_UCRT_LIBRARIES AND NOT v VERSION_LESS 14)
  200. # Find the Windows Universal CRT redistribution directory.
  201. get_filename_component(windows_kits_dir
  202. "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows Kits\\Installed Roots;KitsRoot10]" ABSOLUTE)
  203. set(programfilesx86 "ProgramFiles(x86)")
  204. find_path(WINDOWS_KITS_REDIST_DIR NAMES ucrt/DLLs/${CMAKE_MSVC_ARCH}/ucrtbase.dll
  205. PATHS
  206. "${windows_kits_dir}/Redist"
  207. "$ENV{ProgramFiles}/Windows Kits/10/Redist"
  208. "$ENV{${programfilesx86}}/Windows Kits/10/Redist"
  209. )
  210. mark_as_advanced(WINDOWS_KITS_REDIST_DIR)
  211. # Glob the list of UCRT DLLs.
  212. file(GLOB __ucrt_dlls "${WINDOWS_KITS_REDIST_DIR}/ucrt/DLLs/${CMAKE_MSVC_ARCH}/*.dll")
  213. list(APPEND __install__libs ${__ucrt_dlls})
  214. endif()
  215. endmacro()
  216. if(MSVC10)
  217. MSVCRT_FILES_FOR_VERSION(10)
  218. endif()
  219. if(MSVC11)
  220. MSVCRT_FILES_FOR_VERSION(11)
  221. endif()
  222. if(MSVC12)
  223. MSVCRT_FILES_FOR_VERSION(12)
  224. endif()
  225. if(MSVC14)
  226. MSVCRT_FILES_FOR_VERSION(14)
  227. endif()
  228. if(CMAKE_INSTALL_MFC_LIBRARIES)
  229. if(MSVC70)
  230. set(__install__libs ${__install__libs}
  231. "${SYSTEMROOT}/system32/mfc70.dll"
  232. )
  233. endif()
  234. if(MSVC71)
  235. set(__install__libs ${__install__libs}
  236. "${SYSTEMROOT}/system32/mfc71.dll"
  237. )
  238. endif()
  239. if(MSVC80)
  240. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  241. set(MSVC80_MFC_DIR
  242. "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugMFC")
  243. set(__install__libs ${__install__libs}
  244. "${MSVC80_MFC_DIR}/Microsoft.VC80.DebugMFC.manifest"
  245. "${MSVC80_MFC_DIR}/mfc80d.dll"
  246. "${MSVC80_MFC_DIR}/mfc80ud.dll"
  247. "${MSVC80_MFC_DIR}/mfcm80d.dll"
  248. "${MSVC80_MFC_DIR}/mfcm80ud.dll"
  249. )
  250. endif()
  251. set(MSVC80_MFC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFC")
  252. # Install the manifest that allows DLLs to be loaded from the
  253. # directory containing the executable.
  254. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  255. set(__install__libs ${__install__libs}
  256. "${MSVC80_MFC_DIR}/Microsoft.VC80.MFC.manifest"
  257. "${MSVC80_MFC_DIR}/mfc80.dll"
  258. "${MSVC80_MFC_DIR}/mfc80u.dll"
  259. "${MSVC80_MFC_DIR}/mfcm80.dll"
  260. "${MSVC80_MFC_DIR}/mfcm80u.dll"
  261. )
  262. endif()
  263. # include the language dll's for vs8 as well as the actuall dll's
  264. set(MSVC80_MFCLOC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFCLOC")
  265. # Install the manifest that allows DLLs to be loaded from the
  266. # directory containing the executable.
  267. set(__install__libs ${__install__libs}
  268. "${MSVC80_MFCLOC_DIR}/Microsoft.VC80.MFCLOC.manifest"
  269. "${MSVC80_MFCLOC_DIR}/mfc80chs.dll"
  270. "${MSVC80_MFCLOC_DIR}/mfc80cht.dll"
  271. "${MSVC80_MFCLOC_DIR}/mfc80enu.dll"
  272. "${MSVC80_MFCLOC_DIR}/mfc80esp.dll"
  273. "${MSVC80_MFCLOC_DIR}/mfc80deu.dll"
  274. "${MSVC80_MFCLOC_DIR}/mfc80fra.dll"
  275. "${MSVC80_MFCLOC_DIR}/mfc80ita.dll"
  276. "${MSVC80_MFCLOC_DIR}/mfc80jpn.dll"
  277. "${MSVC80_MFCLOC_DIR}/mfc80kor.dll"
  278. )
  279. endif()
  280. if(MSVC90)
  281. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  282. set(MSVC90_MFC_DIR
  283. "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugMFC")
  284. set(__install__libs ${__install__libs}
  285. "${MSVC90_MFC_DIR}/Microsoft.VC90.DebugMFC.manifest"
  286. "${MSVC90_MFC_DIR}/mfc90d.dll"
  287. "${MSVC90_MFC_DIR}/mfc90ud.dll"
  288. "${MSVC90_MFC_DIR}/mfcm90d.dll"
  289. "${MSVC90_MFC_DIR}/mfcm90ud.dll"
  290. )
  291. endif()
  292. set(MSVC90_MFC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFC")
  293. # Install the manifest that allows DLLs to be loaded from the
  294. # directory containing the executable.
  295. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  296. set(__install__libs ${__install__libs}
  297. "${MSVC90_MFC_DIR}/Microsoft.VC90.MFC.manifest"
  298. "${MSVC90_MFC_DIR}/mfc90.dll"
  299. "${MSVC90_MFC_DIR}/mfc90u.dll"
  300. "${MSVC90_MFC_DIR}/mfcm90.dll"
  301. "${MSVC90_MFC_DIR}/mfcm90u.dll"
  302. )
  303. endif()
  304. # include the language dll's for vs9 as well as the actuall dll's
  305. set(MSVC90_MFCLOC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFCLOC")
  306. # Install the manifest that allows DLLs to be loaded from the
  307. # directory containing the executable.
  308. set(__install__libs ${__install__libs}
  309. "${MSVC90_MFCLOC_DIR}/Microsoft.VC90.MFCLOC.manifest"
  310. "${MSVC90_MFCLOC_DIR}/mfc90chs.dll"
  311. "${MSVC90_MFCLOC_DIR}/mfc90cht.dll"
  312. "${MSVC90_MFCLOC_DIR}/mfc90enu.dll"
  313. "${MSVC90_MFCLOC_DIR}/mfc90esp.dll"
  314. "${MSVC90_MFCLOC_DIR}/mfc90deu.dll"
  315. "${MSVC90_MFCLOC_DIR}/mfc90fra.dll"
  316. "${MSVC90_MFCLOC_DIR}/mfc90ita.dll"
  317. "${MSVC90_MFCLOC_DIR}/mfc90jpn.dll"
  318. "${MSVC90_MFCLOC_DIR}/mfc90kor.dll"
  319. )
  320. endif()
  321. macro(MFC_FILES_FOR_VERSION version)
  322. set(v "${version}")
  323. # Multi-Byte Character Set versions of MFC are available as optional
  324. # addon since Visual Studio 12. So for version 12 or higher, check
  325. # whether they are available and exclude them if they are not.
  326. if(CMAKE_INSTALL_DEBUG_LIBRARIES)
  327. set(MSVC${v}_MFC_DIR
  328. "${MSVC${v}_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugMFC")
  329. set(__install__libs ${__install__libs}
  330. "${MSVC${v}_MFC_DIR}/mfc${v}0ud.dll"
  331. "${MSVC${v}_MFC_DIR}/mfcm${v}0ud.dll"
  332. )
  333. if("${v}" LESS 12 OR EXISTS "${MSVC${v}_MFC_DIR}/mfc${v}0d.dll")
  334. set(__install__libs ${__install__libs}
  335. "${MSVC${v}_MFC_DIR}/mfc${v}0d.dll"
  336. "${MSVC${v}_MFC_DIR}/mfcm${v}0d.dll"
  337. )
  338. endif()
  339. endif()
  340. set(MSVC${v}_MFC_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFC")
  341. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  342. set(__install__libs ${__install__libs}
  343. "${MSVC${v}_MFC_DIR}/mfc${v}0u.dll"
  344. "${MSVC${v}_MFC_DIR}/mfcm${v}0u.dll"
  345. )
  346. if("${v}" LESS 12 OR EXISTS "${MSVC${v}_MFC_DIR}/mfc${v}0.dll")
  347. set(__install__libs ${__install__libs}
  348. "${MSVC${v}_MFC_DIR}/mfc${v}0.dll"
  349. "${MSVC${v}_MFC_DIR}/mfcm${v}0.dll"
  350. )
  351. endif()
  352. endif()
  353. # include the language dll's as well as the actuall dll's
  354. set(MSVC${v}_MFCLOC_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFCLOC")
  355. set(__install__libs ${__install__libs}
  356. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0chs.dll"
  357. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0cht.dll"
  358. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0deu.dll"
  359. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0enu.dll"
  360. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0esn.dll"
  361. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0fra.dll"
  362. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0ita.dll"
  363. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0jpn.dll"
  364. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0kor.dll"
  365. "${MSVC${v}_MFCLOC_DIR}/mfc${v}0rus.dll"
  366. )
  367. endmacro()
  368. if(MSVC10)
  369. MFC_FILES_FOR_VERSION(10)
  370. endif()
  371. if(MSVC11)
  372. MFC_FILES_FOR_VERSION(11)
  373. endif()
  374. if(MSVC12)
  375. MFC_FILES_FOR_VERSION(12)
  376. endif()
  377. if(MSVC14)
  378. MFC_FILES_FOR_VERSION(14)
  379. endif()
  380. endif()
  381. # MSVC 8 was the first version with OpenMP
  382. # Furthermore, there is no debug version of this
  383. if(CMAKE_INSTALL_OPENMP_LIBRARIES)
  384. macro(OPENMP_FILES_FOR_VERSION version_a version_b)
  385. set(va "${version_a}")
  386. set(vb "${version_b}")
  387. set(MSVC${va}_OPENMP_DIR "${MSVC${va}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${vb}.OPENMP")
  388. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY)
  389. set(__install__libs ${__install__libs}
  390. "${MSVC${va}_OPENMP_DIR}/vcomp${vb}.dll")
  391. endif()
  392. endmacro()
  393. if(MSVC80)
  394. OPENMP_FILES_FOR_VERSION(80 80)
  395. endif()
  396. if(MSVC90)
  397. OPENMP_FILES_FOR_VERSION(90 90)
  398. endif()
  399. if(MSVC10)
  400. OPENMP_FILES_FOR_VERSION(10 100)
  401. endif()
  402. if(MSVC11)
  403. OPENMP_FILES_FOR_VERSION(11 110)
  404. endif()
  405. if(MSVC12)
  406. OPENMP_FILES_FOR_VERSION(12 120)
  407. endif()
  408. if(MSVC14)
  409. OPENMP_FILES_FOR_VERSION(14 140)
  410. endif()
  411. endif()
  412. foreach(lib
  413. ${__install__libs}
  414. )
  415. if(EXISTS ${lib})
  416. set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS
  417. ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
  418. else()
  419. if(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS)
  420. message(WARNING "system runtime library file does not exist: '${lib}'")
  421. # This warning indicates an incomplete Visual Studio installation
  422. # or a bug somewhere above here in this file.
  423. # If you would like to avoid this warning, fix the real problem, or
  424. # set CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS before including
  425. # this file.
  426. endif()
  427. endif()
  428. endforeach()
  429. endif()
  430. if(WATCOM)
  431. get_filename_component( CompilerPath ${CMAKE_C_COMPILER} PATH )
  432. if(CMAKE_C_COMPILER_VERSION)
  433. set(_compiler_version ${CMAKE_C_COMPILER_VERSION})
  434. else()
  435. set(_compiler_version ${CMAKE_CXX_COMPILER_VERSION})
  436. endif()
  437. string(REGEX MATCHALL "[0-9]+" _watcom_version_list "${_compiler_version}")
  438. list(GET _watcom_version_list 0 _watcom_major)
  439. list(GET _watcom_version_list 1 _watcom_minor)
  440. set( __install__libs
  441. ${CompilerPath}/clbr${_watcom_major}${_watcom_minor}.dll
  442. ${CompilerPath}/mt7r${_watcom_major}${_watcom_minor}.dll
  443. ${CompilerPath}/plbr${_watcom_major}${_watcom_minor}.dll )
  444. foreach(lib
  445. ${__install__libs}
  446. )
  447. if(EXISTS ${lib})
  448. set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS
  449. ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS} ${lib})
  450. else()
  451. if(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS)
  452. message(WARNING "system runtime library file does not exist: '${lib}'")
  453. # This warning indicates an incomplete Watcom installation
  454. # or a bug somewhere above here in this file.
  455. # If you would like to avoid this warning, fix the real problem, or
  456. # set CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_NO_WARNINGS before including
  457. # this file.
  458. endif()
  459. endif()
  460. endforeach()
  461. endif()
  462. # Include system runtime libraries in the installation if any are
  463. # specified by CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS.
  464. if(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS)
  465. if(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP)
  466. if(NOT CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION)
  467. if(WIN32)
  468. set(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION bin)
  469. else()
  470. set(CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION lib)
  471. endif()
  472. endif()
  473. if(CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT)
  474. set(_CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT
  475. COMPONENT ${CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT})
  476. endif()
  477. install(PROGRAMS ${CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS}
  478. DESTINATION ${CMAKE_INSTALL_SYSTEM_RUNTIME_DESTINATION}
  479. ${_CMAKE_INSTALL_SYSTEM_RUNTIME_COMPONENT}
  480. )
  481. endif()
  482. endif()