Skip to content

Commit 30ddf5c

Browse files
committed
Use MultiThreadedDLL as RuntimeLibrary (/MD instead of /MT)
This saves another 200 KiB, however, this now requires the MSVC++ to be present. Notepad2 was also linked against this runtime library (requires the old MSVCP60.DLL). Signed-off-by: Sven Strickroth <email@cs-ware.de>
1 parent c416106 commit 30ddf5c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Notepad2e.vcxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
<Optimization>Disabled</Optimization>
106106
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
107107
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
108-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
108+
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
109109
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
110110
<MinimalRebuild>true</MinimalRebuild>
111111
</ClCompile>
@@ -120,7 +120,7 @@
120120
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
121121
<OmitFramePointers>true</OmitFramePointers>
122122
<StringPooling>true</StringPooling>
123-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
123+
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
124124
<FunctionLevelLinking>true</FunctionLevelLinking>
125125
<IntrinsicFunctions>true</IntrinsicFunctions>
126126
<MultiProcessorCompilation>true</MultiProcessorCompilation>

0 commit comments

Comments
 (0)