]> git.lyx.org Git - features.git/commitdiff
installer: filelist.nsh: add necessary MSVC 2015 runtime DLLs
authorUwe Stöhr <uwestoehr@lyx.org>
Wed, 13 Apr 2016 23:52:34 +0000 (01:52 +0200)
committerUwe Stöhr <uwestoehr@lyx.org>
Wed, 13 Apr 2016 23:52:34 +0000 (01:52 +0200)
development/Win32/packaging/installer/include/filelist.nsh

index 617302ddfe0bf7e01a263b09fe701cd9d1da1eac..54863f4a329104ac838c95ea509ed542b4812de4 100644 (file)
@@ -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