From a259e8db8fa78dda5b21edab0b5a5e7ba4f725b4 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 22 Mar 2017 12:33:56 -0400 Subject: [PATCH 1/3] InstallRequiredSystemLibraries: Use `MSVC_VERSION` instead of `MSVC##` Issue: #16735 --- Modules/InstallRequiredSystemLibraries.cmake | 44 ++++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index 7975bd4fb3..beb41956d3 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -69,21 +69,21 @@ if(MSVC) get_filename_component(devenv_dir "${CMAKE_MAKE_PROGRAM}" PATH) get_filename_component(base_dir "${devenv_dir}/../.." ABSOLUTE) - if(MSVC70) + if(MSVC_VERSION EQUAL 1300) set(__install__libs "${SYSTEMROOT}/system32/msvcp70.dll" "${SYSTEMROOT}/system32/msvcr70.dll" ) endif() - if(MSVC71) + if(MSVC_VERSION EQUAL 1310) set(__install__libs "${SYSTEMROOT}/system32/msvcp71.dll" "${SYSTEMROOT}/system32/msvcr71.dll" ) endif() - if(MSVC80) + if(MSVC_VERSION EQUAL 1400) # Find the runtime library redistribution directory. get_filename_component(msvc_install_dir "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0;InstallDir]" ABSOLUTE) @@ -120,7 +120,7 @@ if(MSVC) endif() endif() - if(MSVC90) + if(MSVC_VERSION EQUAL 1500) # Find the runtime library redistribution directory. get_filename_component(msvc_install_dir "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\9.0;InstallDir]" ABSOLUTE) @@ -234,36 +234,36 @@ if(MSVC) endif() endmacro() - if(MSVC10) + if(MSVC_VERSION EQUAL 1600) MSVCRT_FILES_FOR_VERSION(10) endif() - if(MSVC11) + if(MSVC_VERSION EQUAL 1700) MSVCRT_FILES_FOR_VERSION(11) endif() - if(MSVC12) + if(MSVC_VERSION EQUAL 1800) MSVCRT_FILES_FOR_VERSION(12) endif() - if(MSVC14) + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) MSVCRT_FILES_FOR_VERSION(14) endif() if(CMAKE_INSTALL_MFC_LIBRARIES) - if(MSVC70) + if(MSVC_VERSION EQUAL 1300) set(__install__libs ${__install__libs} "${SYSTEMROOT}/system32/mfc70.dll" ) endif() - if(MSVC71) + if(MSVC_VERSION EQUAL 1310) set(__install__libs ${__install__libs} "${SYSTEMROOT}/system32/mfc71.dll" ) endif() - if(MSVC80) + if(MSVC_VERSION EQUAL 1400) if(CMAKE_INSTALL_DEBUG_LIBRARIES) set(MSVC80_MFC_DIR "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugMFC") @@ -307,7 +307,7 @@ if(MSVC) ) endif() - if(MSVC90) + if(MSVC_VERSION EQUAL 1500) if(CMAKE_INSTALL_DEBUG_LIBRARIES) set(MSVC90_MFC_DIR "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugMFC") @@ -403,19 +403,19 @@ if(MSVC) ) endmacro() - if(MSVC10) + if(MSVC_VERSION EQUAL 1600) MFC_FILES_FOR_VERSION(10) endif() - if(MSVC11) + if(MSVC_VERSION EQUAL 1700) MFC_FILES_FOR_VERSION(11) endif() - if(MSVC12) + if(MSVC_VERSION EQUAL 1800) MFC_FILES_FOR_VERSION(12) endif() - if(MSVC14) + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) MFC_FILES_FOR_VERSION(14) endif() endif() @@ -434,22 +434,22 @@ if(MSVC) endif() endmacro() - if(MSVC80) + if(MSVC_VERSION EQUAL 1400) OPENMP_FILES_FOR_VERSION(80 80) endif() - if(MSVC90) + if(MSVC_VERSION EQUAL 1500) OPENMP_FILES_FOR_VERSION(90 90) endif() - if(MSVC10) + if(MSVC_VERSION EQUAL 1600) OPENMP_FILES_FOR_VERSION(10 100) endif() - if(MSVC11) + if(MSVC_VERSION EQUAL 1700) OPENMP_FILES_FOR_VERSION(11 110) endif() - if(MSVC12) + if(MSVC_VERSION EQUAL 1800) OPENMP_FILES_FOR_VERSION(12 120) endif() - if(MSVC14) + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) OPENMP_FILES_FOR_VERSION(14 140) endif() endif() From 16eb58d503b55e5758aa791a0e17aed2935f9d37 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 22 Mar 2017 15:15:27 -0400 Subject: [PATCH 2/3] InstallRequiredSystemLibraries: Refactor to avoid macros For a given `MSVC_VERSION` our macros were each called at most once. Replace them with a single code path that is parameterized over what was the macro argument. --- Modules/InstallRequiredSystemLibraries.cmake | 112 +++++++++---------- 1 file changed, 54 insertions(+), 58 deletions(-) diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index beb41956d3..bded8080f6 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -160,8 +160,20 @@ if(MSVC) endif() endif() - macro(MSVCRT_FILES_FOR_VERSION version) - set(v "${version}") + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) + set(_MSVCRT_VERSION 14) + elseif(MSVC_VERSION EQUAL 1800) + set(_MSVCRT_VERSION 12) + elseif(MSVC_VERSION EQUAL 1700) + set(_MSVCRT_VERSION 11) + elseif(MSVC_VERSION EQUAL 1600) + set(_MSVCRT_VERSION 10) + else() + set(_MSVCRT_VERSION "") + endif() + + if(_MSVCRT_VERSION) + set(v "${_MSVCRT_VERSION}") # Find the runtime library redistribution directory. get_filename_component(msvc_install_dir @@ -232,22 +244,6 @@ if(MSVC) list(APPEND __install__libs ${__ucrt_dlls}) endif() endif() - endmacro() - - if(MSVC_VERSION EQUAL 1600) - MSVCRT_FILES_FOR_VERSION(10) - endif() - - if(MSVC_VERSION EQUAL 1700) - MSVCRT_FILES_FOR_VERSION(11) - endif() - - if(MSVC_VERSION EQUAL 1800) - MSVCRT_FILES_FOR_VERSION(12) - endif() - - if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) - MSVCRT_FILES_FOR_VERSION(14) endif() if(CMAKE_INSTALL_MFC_LIBRARIES) @@ -351,8 +347,20 @@ if(MSVC) ) endif() - macro(MFC_FILES_FOR_VERSION version) - set(v "${version}") + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) + set(_MFC_VERSION 14) + elseif(MSVC_VERSION EQUAL 1800) + set(_MFC_VERSION 12) + elseif(MSVC_VERSION EQUAL 1700) + set(_MFC_VERSION 11) + elseif(MSVC_VERSION EQUAL 1600) + set(_MFC_VERSION 10) + else() + set(_MFC_VERSION "") + endif() + + if(_MFC_VERSION) + set(v "${_MFC_VERSION}") # Multi-Byte Character Set versions of MFC are available as optional # addon since Visual Studio 12. So for version 12 or higher, check @@ -401,56 +409,44 @@ if(MSVC) "${MSVC${v}_MFCLOC_DIR}/mfc${v}0kor.dll" "${MSVC${v}_MFCLOC_DIR}/mfc${v}0rus.dll" ) - endmacro() - - if(MSVC_VERSION EQUAL 1600) - MFC_FILES_FOR_VERSION(10) - endif() - - if(MSVC_VERSION EQUAL 1700) - MFC_FILES_FOR_VERSION(11) - endif() - - if(MSVC_VERSION EQUAL 1800) - MFC_FILES_FOR_VERSION(12) - endif() - - if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) - MFC_FILES_FOR_VERSION(14) endif() endif() # MSVC 8 was the first version with OpenMP # Furthermore, there is no debug version of this if(CMAKE_INSTALL_OPENMP_LIBRARIES) - macro(OPENMP_FILES_FOR_VERSION version_a version_b) - set(va "${version_a}") - set(vb "${version_b}") + if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) + set(_MSOMP_VAR_VER 14) + set(_MSOMP_VERSION 140) + elseif(MSVC_VERSION EQUAL 1800) + set(_MSOMP_VAR_VER 12) + set(_MSOMP_VERSION 120) + elseif(MSVC_VERSION EQUAL 1700) + set(_MSOMP_VAR_VER 11) + set(_MSOMP_VERSION 110) + elseif(MSVC_VERSION EQUAL 1600) + set(_MSOMP_VAR_VER 10) + set(_MSOMP_VERSION 100) + elseif(MSVC_VERSION EQUAL 1500) + set(_MSOMP_VAR_VER 90) + set(_MSOMP_VERSION 90) + elseif(MSVC_VERSION EQUAL 1400) + set(_MSOMP_VAR_VER 80) + set(_MSOMP_VERSION 80) + else() + set(_MSOMP_VAR_VER "") + set(_MSOMP_VERSION "") + endif() + + if(_MSOMP_VERSION) + set(va "${_MSOMP_VAR_VER}") + set(vb "${_MSOMP_VERSION}") set(MSVC${va}_OPENMP_DIR "${MSVC${va}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${vb}.OPENMP") if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs ${__install__libs} "${MSVC${va}_OPENMP_DIR}/vcomp${vb}.dll") endif() - endmacro() - - if(MSVC_VERSION EQUAL 1400) - OPENMP_FILES_FOR_VERSION(80 80) - endif() - if(MSVC_VERSION EQUAL 1500) - OPENMP_FILES_FOR_VERSION(90 90) - endif() - if(MSVC_VERSION EQUAL 1600) - OPENMP_FILES_FOR_VERSION(10 100) - endif() - if(MSVC_VERSION EQUAL 1700) - OPENMP_FILES_FOR_VERSION(11 110) - endif() - if(MSVC_VERSION EQUAL 1800) - OPENMP_FILES_FOR_VERSION(12 120) - endif() - if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) - OPENMP_FILES_FOR_VERSION(14 140) endif() endif() From a2aad448e1b285944c3d128487da2f0df6c180b6 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 22 Mar 2017 15:22:26 -0400 Subject: [PATCH 3/3] InstallRequiredSystemLibraries: Drop version from variable names Each `MSVC${v}_*_DIR` variable is only ever used with one value for `${v}` within a given build tree. Drop the `${v}` version component from the variable names. --- Modules/InstallRequiredSystemLibraries.cmake | 245 ++++++++++--------- 1 file changed, 123 insertions(+), 122 deletions(-) diff --git a/Modules/InstallRequiredSystemLibraries.cmake b/Modules/InstallRequiredSystemLibraries.cmake index bded8080f6..67dfe8fb26 100644 --- a/Modules/InstallRequiredSystemLibraries.cmake +++ b/Modules/InstallRequiredSystemLibraries.cmake @@ -87,35 +87,38 @@ if(MSVC) # Find the runtime library redistribution directory. get_filename_component(msvc_install_dir "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\8.0;InstallDir]" ABSOLUTE) - find_path(MSVC80_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest + if(DEFINED MSVC80_REDIST_DIR AND EXISTS "${MSVC80_REDIST_DIR}") + set(MSVC_REDIST_DIR "${MSVC80_REDIST_DIR}") # use old cache entry + endif() + find_path(MSVC_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT/Microsoft.VC80.CRT.manifest PATHS "${msvc_install_dir}/../../VC/redist" "${base_dir}/VC/redist" ) - mark_as_advanced(MSVC80_REDIST_DIR) - set(MSVC80_CRT_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT") + mark_as_advanced(MSVC_REDIST_DIR) + set(MSVC_CRT_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.CRT") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs - "${MSVC80_CRT_DIR}/Microsoft.VC80.CRT.manifest" - "${MSVC80_CRT_DIR}/msvcm80.dll" - "${MSVC80_CRT_DIR}/msvcp80.dll" - "${MSVC80_CRT_DIR}/msvcr80.dll" + "${MSVC_CRT_DIR}/Microsoft.VC80.CRT.manifest" + "${MSVC_CRT_DIR}/msvcm80.dll" + "${MSVC_CRT_DIR}/msvcp80.dll" + "${MSVC_CRT_DIR}/msvcr80.dll" ) else() set(__install__libs) endif() if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC80_CRT_DIR - "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugCRT") + set(MSVC_CRT_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugCRT") set(__install__libs ${__install__libs} - "${MSVC80_CRT_DIR}/Microsoft.VC80.DebugCRT.manifest" - "${MSVC80_CRT_DIR}/msvcm80d.dll" - "${MSVC80_CRT_DIR}/msvcp80d.dll" - "${MSVC80_CRT_DIR}/msvcr80d.dll" + "${MSVC_CRT_DIR}/Microsoft.VC80.DebugCRT.manifest" + "${MSVC_CRT_DIR}/msvcm80d.dll" + "${MSVC_CRT_DIR}/msvcp80d.dll" + "${MSVC_CRT_DIR}/msvcr80d.dll" ) endif() endif() @@ -126,36 +129,39 @@ if(MSVC) "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\9.0;InstallDir]" ABSOLUTE) get_filename_component(msvc_express_install_dir "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VCExpress\\9.0;InstallDir]" ABSOLUTE) - find_path(MSVC90_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest + if(DEFINED MSVC90_REDIST_DIR AND EXISTS "${MSVC90_REDIST_DIR}") + set(MSVC_REDIST_DIR "${MSVC90_REDIST_DIR}") # use old cache entry + endif() + find_path(MSVC_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT/Microsoft.VC90.CRT.manifest PATHS "${msvc_install_dir}/../../VC/redist" "${msvc_express_install_dir}/../../VC/redist" "${base_dir}/VC/redist" ) - mark_as_advanced(MSVC90_REDIST_DIR) - set(MSVC90_CRT_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT") + mark_as_advanced(MSVC_REDIST_DIR) + set(MSVC_CRT_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.CRT") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs - "${MSVC90_CRT_DIR}/Microsoft.VC90.CRT.manifest" - "${MSVC90_CRT_DIR}/msvcm90.dll" - "${MSVC90_CRT_DIR}/msvcp90.dll" - "${MSVC90_CRT_DIR}/msvcr90.dll" + "${MSVC_CRT_DIR}/Microsoft.VC90.CRT.manifest" + "${MSVC_CRT_DIR}/msvcm90.dll" + "${MSVC_CRT_DIR}/msvcp90.dll" + "${MSVC_CRT_DIR}/msvcr90.dll" ) else() set(__install__libs) endif() if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC90_CRT_DIR - "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugCRT") + set(MSVC_CRT_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugCRT") set(__install__libs ${__install__libs} - "${MSVC90_CRT_DIR}/Microsoft.VC90.DebugCRT.manifest" - "${MSVC90_CRT_DIR}/msvcm90d.dll" - "${MSVC90_CRT_DIR}/msvcp90d.dll" - "${MSVC90_CRT_DIR}/msvcr90d.dll" + "${MSVC_CRT_DIR}/Microsoft.VC90.DebugCRT.manifest" + "${MSVC_CRT_DIR}/msvcm90d.dll" + "${MSVC_CRT_DIR}/msvcp90d.dll" + "${MSVC_CRT_DIR}/msvcr90d.dll" ) endif() endif() @@ -179,45 +185,48 @@ if(MSVC) get_filename_component(msvc_install_dir "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\${v}.0;InstallDir]" ABSOLUTE) set(programfilesx86 "ProgramFiles(x86)") - find_path(MSVC${v}_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT + if(DEFINED MSVC${v}_REDIST_DIR AND EXISTS "${MSVC${v}_REDIST_DIR}") + set(MSVC_REDIST_DIR "${MSVC${v}_REDIST_DIR}") # use old cache entry + endif() + find_path(MSVC_REDIST_DIR NAMES ${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT PATHS "${msvc_install_dir}/../../VC/redist" "${base_dir}/VC/redist" "$ENV{ProgramFiles}/Microsoft Visual Studio ${v}.0/VC/redist" "$ENV{${programfilesx86}}/Microsoft Visual Studio ${v}.0/VC/redist" ) - mark_as_advanced(MSVC${v}_REDIST_DIR) - set(MSVC${v}_CRT_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT") + mark_as_advanced(MSVC_REDIST_DIR) + set(MSVC_CRT_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.CRT") if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs - "${MSVC${v}_CRT_DIR}/msvcp${v}0.dll" + "${MSVC_CRT_DIR}/msvcp${v}0.dll" ) if(NOT v VERSION_LESS 14) list(APPEND __install__libs - "${MSVC${v}_CRT_DIR}/vcruntime${v}0.dll" - "${MSVC${v}_CRT_DIR}/concrt${v}0.dll" + "${MSVC_CRT_DIR}/vcruntime${v}0.dll" + "${MSVC_CRT_DIR}/concrt${v}0.dll" ) else() - list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/msvcr${v}0.dll") + list(APPEND __install__libs "${MSVC_CRT_DIR}/msvcr${v}0.dll") endif() else() set(__install__libs) endif() if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC${v}_CRT_DIR - "${MSVC${v}_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugCRT") + set(MSVC_CRT_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugCRT") set(__install__libs ${__install__libs} - "${MSVC${v}_CRT_DIR}/msvcp${v}0d.dll" + "${MSVC_CRT_DIR}/msvcp${v}0d.dll" ) if(NOT v VERSION_LESS 14) list(APPEND __install__libs - "${MSVC${v}_CRT_DIR}/vcruntime${v}0d.dll" - "${MSVC${v}_CRT_DIR}/concrt${v}0d.dll" + "${MSVC_CRT_DIR}/vcruntime${v}0d.dll" + "${MSVC_CRT_DIR}/concrt${v}0d.dll" ) else() - list(APPEND __install__libs "${MSVC${v}_CRT_DIR}/msvcr${v}0d.dll") + list(APPEND __install__libs "${MSVC_CRT_DIR}/msvcr${v}0d.dll") endif() endif() @@ -261,89 +270,89 @@ if(MSVC) if(MSVC_VERSION EQUAL 1400) if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC80_MFC_DIR - "${MSVC80_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugMFC") + set(MSVC_MFC_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC80.DebugMFC") set(__install__libs ${__install__libs} - "${MSVC80_MFC_DIR}/Microsoft.VC80.DebugMFC.manifest" - "${MSVC80_MFC_DIR}/mfc80d.dll" - "${MSVC80_MFC_DIR}/mfc80ud.dll" - "${MSVC80_MFC_DIR}/mfcm80d.dll" - "${MSVC80_MFC_DIR}/mfcm80ud.dll" + "${MSVC_MFC_DIR}/Microsoft.VC80.DebugMFC.manifest" + "${MSVC_MFC_DIR}/mfc80d.dll" + "${MSVC_MFC_DIR}/mfc80ud.dll" + "${MSVC_MFC_DIR}/mfcm80d.dll" + "${MSVC_MFC_DIR}/mfcm80ud.dll" ) endif() - set(MSVC80_MFC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFC") + set(MSVC_MFC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFC") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs ${__install__libs} - "${MSVC80_MFC_DIR}/Microsoft.VC80.MFC.manifest" - "${MSVC80_MFC_DIR}/mfc80.dll" - "${MSVC80_MFC_DIR}/mfc80u.dll" - "${MSVC80_MFC_DIR}/mfcm80.dll" - "${MSVC80_MFC_DIR}/mfcm80u.dll" + "${MSVC_MFC_DIR}/Microsoft.VC80.MFC.manifest" + "${MSVC_MFC_DIR}/mfc80.dll" + "${MSVC_MFC_DIR}/mfc80u.dll" + "${MSVC_MFC_DIR}/mfcm80.dll" + "${MSVC_MFC_DIR}/mfcm80u.dll" ) endif() # include the language dll's for vs8 as well as the actuall dll's - set(MSVC80_MFCLOC_DIR "${MSVC80_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFCLOC") + set(MSVC_MFCLOC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC80.MFCLOC") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. set(__install__libs ${__install__libs} - "${MSVC80_MFCLOC_DIR}/Microsoft.VC80.MFCLOC.manifest" - "${MSVC80_MFCLOC_DIR}/mfc80chs.dll" - "${MSVC80_MFCLOC_DIR}/mfc80cht.dll" - "${MSVC80_MFCLOC_DIR}/mfc80enu.dll" - "${MSVC80_MFCLOC_DIR}/mfc80esp.dll" - "${MSVC80_MFCLOC_DIR}/mfc80deu.dll" - "${MSVC80_MFCLOC_DIR}/mfc80fra.dll" - "${MSVC80_MFCLOC_DIR}/mfc80ita.dll" - "${MSVC80_MFCLOC_DIR}/mfc80jpn.dll" - "${MSVC80_MFCLOC_DIR}/mfc80kor.dll" + "${MSVC_MFCLOC_DIR}/Microsoft.VC80.MFCLOC.manifest" + "${MSVC_MFCLOC_DIR}/mfc80chs.dll" + "${MSVC_MFCLOC_DIR}/mfc80cht.dll" + "${MSVC_MFCLOC_DIR}/mfc80enu.dll" + "${MSVC_MFCLOC_DIR}/mfc80esp.dll" + "${MSVC_MFCLOC_DIR}/mfc80deu.dll" + "${MSVC_MFCLOC_DIR}/mfc80fra.dll" + "${MSVC_MFCLOC_DIR}/mfc80ita.dll" + "${MSVC_MFCLOC_DIR}/mfc80jpn.dll" + "${MSVC_MFCLOC_DIR}/mfc80kor.dll" ) endif() if(MSVC_VERSION EQUAL 1500) if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC90_MFC_DIR - "${MSVC90_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugMFC") + set(MSVC_MFC_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC90.DebugMFC") set(__install__libs ${__install__libs} - "${MSVC90_MFC_DIR}/Microsoft.VC90.DebugMFC.manifest" - "${MSVC90_MFC_DIR}/mfc90d.dll" - "${MSVC90_MFC_DIR}/mfc90ud.dll" - "${MSVC90_MFC_DIR}/mfcm90d.dll" - "${MSVC90_MFC_DIR}/mfcm90ud.dll" + "${MSVC_MFC_DIR}/Microsoft.VC90.DebugMFC.manifest" + "${MSVC_MFC_DIR}/mfc90d.dll" + "${MSVC_MFC_DIR}/mfc90ud.dll" + "${MSVC_MFC_DIR}/mfcm90d.dll" + "${MSVC_MFC_DIR}/mfcm90ud.dll" ) endif() - set(MSVC90_MFC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFC") + set(MSVC_MFC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFC") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs ${__install__libs} - "${MSVC90_MFC_DIR}/Microsoft.VC90.MFC.manifest" - "${MSVC90_MFC_DIR}/mfc90.dll" - "${MSVC90_MFC_DIR}/mfc90u.dll" - "${MSVC90_MFC_DIR}/mfcm90.dll" - "${MSVC90_MFC_DIR}/mfcm90u.dll" + "${MSVC_MFC_DIR}/Microsoft.VC90.MFC.manifest" + "${MSVC_MFC_DIR}/mfc90.dll" + "${MSVC_MFC_DIR}/mfc90u.dll" + "${MSVC_MFC_DIR}/mfcm90.dll" + "${MSVC_MFC_DIR}/mfcm90u.dll" ) endif() # include the language dll's for vs9 as well as the actuall dll's - set(MSVC90_MFCLOC_DIR "${MSVC90_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFCLOC") + set(MSVC_MFCLOC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC90.MFCLOC") # Install the manifest that allows DLLs to be loaded from the # directory containing the executable. set(__install__libs ${__install__libs} - "${MSVC90_MFCLOC_DIR}/Microsoft.VC90.MFCLOC.manifest" - "${MSVC90_MFCLOC_DIR}/mfc90chs.dll" - "${MSVC90_MFCLOC_DIR}/mfc90cht.dll" - "${MSVC90_MFCLOC_DIR}/mfc90enu.dll" - "${MSVC90_MFCLOC_DIR}/mfc90esp.dll" - "${MSVC90_MFCLOC_DIR}/mfc90deu.dll" - "${MSVC90_MFCLOC_DIR}/mfc90fra.dll" - "${MSVC90_MFCLOC_DIR}/mfc90ita.dll" - "${MSVC90_MFCLOC_DIR}/mfc90jpn.dll" - "${MSVC90_MFCLOC_DIR}/mfc90kor.dll" + "${MSVC_MFCLOC_DIR}/Microsoft.VC90.MFCLOC.manifest" + "${MSVC_MFCLOC_DIR}/mfc90chs.dll" + "${MSVC_MFCLOC_DIR}/mfc90cht.dll" + "${MSVC_MFCLOC_DIR}/mfc90enu.dll" + "${MSVC_MFCLOC_DIR}/mfc90esp.dll" + "${MSVC_MFCLOC_DIR}/mfc90deu.dll" + "${MSVC_MFCLOC_DIR}/mfc90fra.dll" + "${MSVC_MFCLOC_DIR}/mfc90ita.dll" + "${MSVC_MFCLOC_DIR}/mfc90jpn.dll" + "${MSVC_MFCLOC_DIR}/mfc90kor.dll" ) endif() @@ -367,47 +376,47 @@ if(MSVC) # whether they are available and exclude them if they are not. if(CMAKE_INSTALL_DEBUG_LIBRARIES) - set(MSVC${v}_MFC_DIR - "${MSVC${v}_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugMFC") + set(MSVC_MFC_DIR + "${MSVC_REDIST_DIR}/Debug_NonRedist/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.DebugMFC") set(__install__libs ${__install__libs} - "${MSVC${v}_MFC_DIR}/mfc${v}0ud.dll" - "${MSVC${v}_MFC_DIR}/mfcm${v}0ud.dll" + "${MSVC_MFC_DIR}/mfc${v}0ud.dll" + "${MSVC_MFC_DIR}/mfcm${v}0ud.dll" ) - if("${v}" LESS 12 OR EXISTS "${MSVC${v}_MFC_DIR}/mfc${v}0d.dll") + if("${v}" LESS 12 OR EXISTS "${MSVC_MFC_DIR}/mfc${v}0d.dll") set(__install__libs ${__install__libs} - "${MSVC${v}_MFC_DIR}/mfc${v}0d.dll" - "${MSVC${v}_MFC_DIR}/mfcm${v}0d.dll" + "${MSVC_MFC_DIR}/mfc${v}0d.dll" + "${MSVC_MFC_DIR}/mfcm${v}0d.dll" ) endif() endif() - set(MSVC${v}_MFC_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFC") + set(MSVC_MFC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFC") if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs ${__install__libs} - "${MSVC${v}_MFC_DIR}/mfc${v}0u.dll" - "${MSVC${v}_MFC_DIR}/mfcm${v}0u.dll" + "${MSVC_MFC_DIR}/mfc${v}0u.dll" + "${MSVC_MFC_DIR}/mfcm${v}0u.dll" ) - if("${v}" LESS 12 OR EXISTS "${MSVC${v}_MFC_DIR}/mfc${v}0.dll") + if("${v}" LESS 12 OR EXISTS "${MSVC_MFC_DIR}/mfc${v}0.dll") set(__install__libs ${__install__libs} - "${MSVC${v}_MFC_DIR}/mfc${v}0.dll" - "${MSVC${v}_MFC_DIR}/mfcm${v}0.dll" + "${MSVC_MFC_DIR}/mfc${v}0.dll" + "${MSVC_MFC_DIR}/mfcm${v}0.dll" ) endif() endif() # include the language dll's as well as the actuall dll's - set(MSVC${v}_MFCLOC_DIR "${MSVC${v}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFCLOC") + set(MSVC_MFCLOC_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}0.MFCLOC") set(__install__libs ${__install__libs} - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0chs.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0cht.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0deu.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0enu.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0esn.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0fra.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0ita.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0jpn.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0kor.dll" - "${MSVC${v}_MFCLOC_DIR}/mfc${v}0rus.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0chs.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0cht.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0deu.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0enu.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0esn.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0fra.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0ita.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0jpn.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0kor.dll" + "${MSVC_MFCLOC_DIR}/mfc${v}0rus.dll" ) endif() endif() @@ -416,36 +425,28 @@ if(MSVC) # Furthermore, there is no debug version of this if(CMAKE_INSTALL_OPENMP_LIBRARIES) if(MSVC_VERSION EQUAL 1900 OR MSVC_VERSION EQUAL 1910) - set(_MSOMP_VAR_VER 14) set(_MSOMP_VERSION 140) elseif(MSVC_VERSION EQUAL 1800) - set(_MSOMP_VAR_VER 12) set(_MSOMP_VERSION 120) elseif(MSVC_VERSION EQUAL 1700) - set(_MSOMP_VAR_VER 11) set(_MSOMP_VERSION 110) elseif(MSVC_VERSION EQUAL 1600) - set(_MSOMP_VAR_VER 10) set(_MSOMP_VERSION 100) elseif(MSVC_VERSION EQUAL 1500) - set(_MSOMP_VAR_VER 90) set(_MSOMP_VERSION 90) elseif(MSVC_VERSION EQUAL 1400) - set(_MSOMP_VAR_VER 80) set(_MSOMP_VERSION 80) else() - set(_MSOMP_VAR_VER "") set(_MSOMP_VERSION "") endif() if(_MSOMP_VERSION) - set(va "${_MSOMP_VAR_VER}") - set(vb "${_MSOMP_VERSION}") - set(MSVC${va}_OPENMP_DIR "${MSVC${va}_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${vb}.OPENMP") + set(v "${_MSOMP_VERSION}") + set(MSVC_OPENMP_DIR "${MSVC_REDIST_DIR}/${CMAKE_MSVC_ARCH}/Microsoft.VC${v}.OPENMP") if(NOT CMAKE_INSTALL_DEBUG_LIBRARIES_ONLY) set(__install__libs ${__install__libs} - "${MSVC${va}_OPENMP_DIR}/vcomp${vb}.dll") + "${MSVC_OPENMP_DIR}/vcomp${v}.dll") endif() endif() endif()