Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

fogcreek shellext: use CRT as static library

Changeset 55264e5161c8

Parent d074300ef351

by David Golub

Changes to 2 files · Browse files at 55264e5161c8 Showing diff from parent d074300ef351 Diff from another changeset...

 
28
29
30
 
31
32
33
34
35
 
36
37
38
39
40
41
 
42
43
44
45
46
47
 
48
49
50
 
89
90
91
 
92
93
94
 
116
117
118
 
119
120
121
 
145
146
147
 
148
149
150
 
176
177
178
 
179
180
181
 
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
93
94
95
96
97
98
99
 
121
122
123
124
125
126
127
 
151
152
153
154
155
156
157
 
183
184
185
186
187
188
189
@@ -28,23 +28,27 @@
  <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>true</UseDebugLibraries>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>true</UseDebugLibraries>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>false</UseDebugLibraries>   <WholeProgramOptimization>true</WholeProgramOptimization>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>false</UseDebugLibraries>   <WholeProgramOptimization>true</WholeProgramOptimization>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />   <ImportGroup Label="ExtensionSettings"> @@ -89,6 +93,7 @@
  <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>   <AdditionalOptions>$(THG_EXTRA_CPPFLAGS) %(AdditionalOptions)</AdditionalOptions> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -116,6 +121,7 @@
  <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>   <AdditionalOptions>$(THG_EXTRA_CPPFLAGS) %(AdditionalOptions)</AdditionalOptions> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -145,6 +151,7 @@
  <IntrinsicFunctions>true</IntrinsicFunctions>   <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>   <AdditionalOptions>$(THG_EXTRA_CPPFLAGS) %(AdditionalOptions)</AdditionalOptions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -176,6 +183,7 @@
  <IntrinsicFunctions>true</IntrinsicFunctions>   <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>   <AdditionalOptions>$(THG_EXTRA_CPPFLAGS) %(AdditionalOptions)</AdditionalOptions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem>
 
28
29
30
 
31
32
33
34
35
 
36
37
38
39
40
41
 
42
43
44
45
46
47
 
48
49
50
 
85
86
87
 
88
89
90
 
99
100
101
 
102
103
104
 
115
116
117
 
118
119
120
 
133
134
135
 
136
137
138
 
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
89
90
91
92
93
94
95
 
104
105
106
107
108
109
110
 
121
122
123
124
125
126
127
 
140
141
142
143
144
145
146
@@ -28,23 +28,27 @@
  <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>true</UseDebugLibraries>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>true</UseDebugLibraries>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>false</UseDebugLibraries>   <WholeProgramOptimization>true</WholeProgramOptimization>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">   <ConfigurationType>DynamicLibrary</ConfigurationType>   <UseDebugLibraries>false</UseDebugLibraries>   <WholeProgramOptimization>true</WholeProgramOptimization>   <CharacterSet>MultiByte</CharacterSet> + <UseOfAtl>Static</UseOfAtl>   </PropertyGroup>   <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />   <ImportGroup Label="ExtensionSettings"> @@ -85,6 +89,7 @@
  <WarningLevel>Level3</WarningLevel>   <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;TERMINATE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -99,6 +104,7 @@
  <WarningLevel>Level3</WarningLevel>   <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;TERMINATE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -115,6 +121,7 @@
  <FunctionLevelLinking>true</FunctionLevelLinking>   <IntrinsicFunctions>true</IntrinsicFunctions>   <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;TERMINATE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem> @@ -133,6 +140,7 @@
  <FunctionLevelLinking>true</FunctionLevelLinking>   <IntrinsicFunctions>true</IntrinsicFunctions>   <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;TERMINATE_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> + <RuntimeLibrary>MultiThreaded</RuntimeLibrary>   </ClCompile>   <Link>   <SubSystem>Windows</SubSystem>