From 16bd45f099539429ac0ec6624593a239152e712c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Uwe=20St=C3=B6hr?= Date: Thu, 14 Apr 2016 01:52:34 +0200 Subject: [PATCH] installer: filelist.nsh: add necessary MSVC 2015 runtime DLLs --- .../Win32/packaging/installer/include/filelist.nsh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/development/Win32/packaging/installer/include/filelist.nsh b/development/Win32/packaging/installer/include/filelist.nsh index 617302ddfe..54863f4a32 100644 --- a/development/Win32/packaging/installer/include/filelist.nsh +++ b/development/Win32/packaging/installer/include/filelist.nsh @@ -57,9 +57,15 @@ Lists of files to include in the installer !macro FileListMSVC COMMAND DIRECTORY - # Manifest not needed for 2010 + # Files needed for MSVC 2010 ${FILE}msvcr100.dll" ${FILE}msvcp100.dll" + # Files needed for MSVC 2015 + ${FILE}msvcp140.dll" + ${FILE}vcamp140.dll" + ${FILE}vccorlib140.dll" + ${FILE}vcomp140.dll" + ${FILE}vcruntime140.dll" !macroend -- 2.39.2