Skip to content

Commit

Permalink
Added new VC runtime DLL.
Browse files Browse the repository at this point in the history
  • Loading branch information
xmichelo committed Jun 25, 2020
1 parent 807abe5 commit 78efda4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
1 change: 1 addition & 0 deletions Installer/installer.nsi
Expand Up @@ -161,6 +161,7 @@ file "$%QTDIR%\bin\Qt5Widgets.dll"
file "$%QTDIR%\bin\Qt5Multimedia.dll"
file "$%QTDIR%\bin\Qt5Network.dll"
file "${VC_DLL_DIR}\msvcp140.dll"
file "${VC_DLL_DIR}\msvcp140_1.dll"
file "${VC_DLL_DIR}\vcruntime140.dll"
file "${VC_DLL_DIR}\msvcr100.dll"
setOutPath $INSTDIR\platforms
Expand Down
2 changes: 1 addition & 1 deletion Scripts/PowerShell/Beeftext.ps1
Expand Up @@ -32,7 +32,7 @@ function copySslDlls([String]$dstPath)
#***********************************************************************************************************************
function copyVcppDlls([String]$dstPath)
{
$vcDlls = "msvcp140.dll", "vcruntime140.dll", "msvcr100.dll"
$vcDlls = "msvcp140.dll", "msvcp140_1.dll", "vcruntime140.dll", "msvcr100.dll"
foreach ($dll in $vcDlls) { Copy-Item -Path (absolutePath $vcDllDir $dll) -Destination $dstPath }
}

Expand Down
22 changes: 11 additions & 11 deletions Vendor/VCRuntime/README.md
@@ -1,12 +1,12 @@
# Microsoft Visual C++ runtime DLLs

## msvcp140.dll and msvcr100.dll

These DLL file are part of the redistributable runtime for Visual C++ 2017.

Source: Microsoft Visual Studio\2017\Community\VC\Redist\MSVC\14.12.25810\x86

# msvcr100.dll

These DLL file are part of the redistributable runtime for Visual C++ 2010.
# Microsoft Visual C++ runtime DLLs

## msvcp140.dll, msvcp140_1.dll and vcruntime140.dll

These DLL file are part of the redistributable runtime for Visual C++ 2017.

Source: Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.26.28801\bin\Hostx86\x86

# msvcr100.dll

This DLL file is part of the redistributable runtime for Visual C++ 2010.
It is required by the OpenSLL distribution included in Qt
Binary file added Vendor/VCRuntime/msvcp140_1.dll
Binary file not shown.

0 comments on commit 78efda4

Please sign in to comment.