diff options
author | George Hazan <ghazan@miranda.im> | 2017-11-25 23:24:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-11-25 23:24:02 +0300 |
commit | 78940b7b3c2d09985556b47fb9903364ef306a83 (patch) | |
tree | f726946a97ddaa646b0dcb6ca9a298b5149207d6 /src/miranda32/miranda32.vcxproj | |
parent | 4657d391c9f213c788e32347c083f2699aed672e (diff) |
miranda32.exe is compiled completely without C++ runtime, therefore it can use dynamic runtime linking
Diffstat (limited to 'src/miranda32/miranda32.vcxproj')
-rw-r--r-- | src/miranda32/miranda32.vcxproj | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/miranda32/miranda32.vcxproj b/src/miranda32/miranda32.vcxproj index 42e4435e2d..4b98d8c685 100644 --- a/src/miranda32/miranda32.vcxproj +++ b/src/miranda32/miranda32.vcxproj @@ -40,13 +40,9 @@ <AdditionalManifestFiles>res/miranda32.exe.manifest</AdditionalManifestFiles>
</Manifest>
<Link>
+ <DelayLoadDLLs Condition="'$(Configuration)'=='Release'">VCRUNTIME140.dll</DelayLoadDLLs>
+ <DelayLoadDLLs Condition="'$(Configuration)'=='Debug'">ucrtbased.dll;VCRUNTIME140d.dll</DelayLoadDLLs>
<AdditionalManifestDependencies>type=%27win32%27 name=%27Microsoft.Windows.Common-Controls%27 version=%276.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;type=%27win32%27 name=%27Microsoft.Windows.Gdiplus%27 version=%271.0.0.0%27 processorArchitecture=%27*%27 publicKeyToken=%276595b64144ccf1df%27 language=%27*%27;%(AdditionalManifestDependencies)</AdditionalManifestDependencies>
</Link>
- <ClCompile>
- <RuntimeLibrary Condition="'$(Configuration)'=='Debug'">MultiThreadedDebug</RuntimeLibrary>
- </ClCompile>
- <ClCompile>
- <RuntimeLibrary Condition="'$(Configuration)'=='Release'">MultiThreaded</RuntimeLibrary>
- </ClCompile>
</ItemDefinitionGroup>
</Project>
\ No newline at end of file |