Skip to content

Commit

Permalink
Use MultiThreadedDLL as RuntimeLibrary (/MD instead of /MT)
Browse files Browse the repository at this point in the history
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 protected]>
  • Loading branch information
csware committed Aug 15, 2018
1 parent c416106 commit 30ddf5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Notepad2e.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
<MinimalRebuild>true</MinimalRebuild>
</ClCompile>
Expand All @@ -120,7 +120,7 @@
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<OmitFramePointers>true</OmitFramePointers>
<StringPooling>true</StringPooling>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
Expand Down

0 comments on commit 30ddf5c

Please sign in to comment.