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

fogcreek shellext: enable precompiled header

Changeset 98a096061393

Parent 382d36b80598

by David Golub

Changes to 3 files · Browse files at 98a096061393 Showing diff from parent 382d36b80598 Diff from another changeset...

 
84
85
86
87
88
 
89
90
91
 
112
113
114
115
116
 
117
118
119
 
141
142
143
144
145
 
146
147
148
 
173
174
175
176
177
 
178
179
180
 
212
213
214
 
 
 
 
 
 
215
216
217
 
84
85
86
 
 
87
88
89
90
 
111
112
113
 
 
114
115
116
117
 
139
140
141
 
 
142
143
144
145
 
170
171
172
 
 
173
174
175
176
 
208
209
210
211
212
213
214
215
216
217
218
219
@@ -84,8 +84,7 @@
  </PropertyGroup>   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">   <ClCompile> - <PrecompiledHeader> - </PrecompiledHeader> + <PrecompiledHeader>Use</PrecompiledHeader>   <WarningLevel>Level3</WarningLevel>   <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -112,8 +111,7 @@
  </ItemDefinitionGroup>   <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">   <ClCompile> - <PrecompiledHeader> - </PrecompiledHeader> + <PrecompiledHeader>Use</PrecompiledHeader>   <WarningLevel>Level3</WarningLevel>   <Optimization>Disabled</Optimization>   <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;THGSHELL_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions> @@ -141,8 +139,7 @@
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">   <ClCompile>   <WarningLevel>Level3</WarningLevel> - <PrecompiledHeader> - </PrecompiledHeader> + <PrecompiledHeader>Use</PrecompiledHeader>   <Optimization>MaxSpeed</Optimization>   <FunctionLevelLinking>true</FunctionLevelLinking>   <IntrinsicFunctions>true</IntrinsicFunctions> @@ -173,8 +170,7 @@
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">   <ClCompile>   <WarningLevel>Level3</WarningLevel> - <PrecompiledHeader> - </PrecompiledHeader> + <PrecompiledHeader>Use</PrecompiledHeader>   <Optimization>MaxSpeed</Optimization>   <FunctionLevelLinking>true</FunctionLevelLinking>   <IntrinsicFunctions>true</IntrinsicFunctions> @@ -212,6 +208,12 @@
  <ClCompile Include="IconBitmapUtils.cpp" />   <ClCompile Include="QueryDirstate.cpp" />   <ClCompile Include="RegistryConfig.cpp" /> + <ClCompile Include="stdafx.cpp"> + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> + </ClCompile>   <ClCompile Include="StringUtils.cpp" />   <ClCompile Include="SysInfo.cpp" />   <ClCompile Include="THgShell.cpp" />
 
72
73
74
 
 
 
75
76
77
 
72
73
74
75
76
77
78
79
80
@@ -72,6 +72,9 @@
  <ClCompile Include="Winstat.cpp">   <Filter>Source Files</Filter>   </ClCompile> + <ClCompile Include="stdafx.cpp"> + <Filter>Source Files</Filter> + </ClCompile>   </ItemGroup>   <ItemGroup>   <ClInclude Include="Directory.h">
Change 1 of 1 Show Entire File win32/​shellext/​stdafx.cpp Stacked
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@@ -0,0 +1,16 @@
+// Copyright (C) 2011 Fog Creek Software +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see <http://www.gnu.org/licenses/>. + +#include "stdafx.h"