mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 11:50:11 -05:00
IRSL: Install the 1041 folder for Intel compilers
The presence of the `1041` seems to solely depend on whether a given Intel compiler release was available in Japanese or not. Install it if it is present and silently ignore it otherwise. Example: The Intel 2018.0 release did not ship it, but the 2018.1 compilers have it.
This commit is contained in:
@@ -594,8 +594,11 @@ if(_IRSL_HAVE_Intel)
|
|||||||
endif()
|
endif()
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(__install_dirs "${_Intel_redistdir}/1033")
|
set(__install_dirs "${_Intel_redistdir}/1033")
|
||||||
|
if(EXISTS "${_Intel_redistdir}/1041")
|
||||||
|
list(APPEND __install_dirs "${_Intel_redistdir}/1041")
|
||||||
|
endif()
|
||||||
if(_Intel_compiler_ver VERSION_LESS 18)
|
if(_Intel_compiler_ver VERSION_LESS 18)
|
||||||
list(APPEND __install_dirs "${_Intel_redistdir}/irml" "${_Intel_redistdir}/irml_c" "${_Intel_redistdir}/1041")
|
list(APPEND __install_dirs "${_Intel_redistdir}/irml" "${_Intel_redistdir}/irml_c")
|
||||||
endif()
|
endif()
|
||||||
foreach(__Intel_lib IN ITEMS cilkrts20.dll libchkp.dll libgfxoffload.dll libioffload_host.dll libirngmd.dll
|
foreach(__Intel_lib IN ITEMS cilkrts20.dll libchkp.dll libgfxoffload.dll libioffload_host.dll libirngmd.dll
|
||||||
libmmd.dll libmmdd.dll libmpx.dll liboffload.dll svml_dispmd.dll)
|
libmmd.dll libmmdd.dll libmpx.dll liboffload.dll svml_dispmd.dll)
|
||||||
|
|||||||
Reference in New Issue
Block a user