summaryrefslogtreecommitdiffstats
path: root/VC2010/WebServer.vcxproj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--VC2010/WebServer.vcxproj13
-rw-r--r--VC2010/WebServer.vcxproj.filters15
2 files changed, 15 insertions, 13 deletions
diff --git a/VC2010/WebServer.vcxproj b/VC2010/WebServer.vcxproj
index 03c84d620..90c0dc96c 100644
--- a/VC2010/WebServer.vcxproj
+++ b/VC2010/WebServer.vcxproj
@@ -76,6 +76,8 @@
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <PrecompiledHeader>Use</PrecompiledHeader>
+ <PrecompiledHeaderFile>Globals.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -103,6 +105,8 @@
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
+ <PrecompiledHeader>Use</PrecompiledHeader>
+ <PrecompiledHeaderFile>Globals.h</PrecompiledHeaderFile>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
@@ -128,7 +132,11 @@
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\WebServer\base64.cpp" />
- <ClCompile Include="..\WebServer\cEvent.cpp" />
+ <ClCompile Include="..\WebServer\cEvents.cpp" />
+ <ClCompile Include="..\WebServer\Globals.cpp">
+ <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
+ <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
+ </ClCompile>
<ClCompile Include="..\WebServer\Socket.cpp" />
<ClCompile Include="..\WebServer\StdHelpers.cpp" />
<ClCompile Include="..\WebServer\UrlHelper.cpp" />
@@ -136,7 +144,8 @@
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\WebServer\base64.h" />
- <ClInclude Include="..\WebServer\cEvent.h" />
+ <ClInclude Include="..\WebServer\cEvents.h" />
+ <ClInclude Include="..\WebServer\Globals.h" />
<ClInclude Include="..\WebServer\Socket.h" />
<ClInclude Include="..\WebServer\StdHelpers.h" />
<ClInclude Include="..\WebServer\Tracer.h" />
diff --git a/VC2010/WebServer.vcxproj.filters b/VC2010/WebServer.vcxproj.filters
index 4c80b0863..105781d04 100644
--- a/VC2010/WebServer.vcxproj.filters
+++ b/VC2010/WebServer.vcxproj.filters
@@ -6,9 +6,8 @@
<ClCompile Include="..\WebServer\StdHelpers.cpp" />
<ClCompile Include="..\WebServer\UrlHelper.cpp" />
<ClCompile Include="..\WebServer\WebServer.cpp" />
- <ClCompile Include="..\WebServer\cEvent.cpp">
- <Filter>Threading</Filter>
- </ClCompile>
+ <ClCompile Include="..\WebServer\cEvents.cpp" />
+ <ClCompile Include="..\WebServer\Globals.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\WebServer\base64.h" />
@@ -17,13 +16,7 @@
<ClInclude Include="..\WebServer\UrlHelper.h" />
<ClInclude Include="..\WebServer\WebServer.h" />
<ClInclude Include="..\WebServer\StdHelpers.h" />
- <ClInclude Include="..\WebServer\cEvent.h">
- <Filter>Threading</Filter>
- </ClInclude>
- </ItemGroup>
- <ItemGroup>
- <Filter Include="Threading">
- <UniqueIdentifier>{5108ca96-8262-4e37-b891-cff8f714210e}</UniqueIdentifier>
- </Filter>
+ <ClInclude Include="..\WebServer\Globals.h" />
+ <ClInclude Include="..\WebServer\cEvents.h" />
</ItemGroup>
</Project> \ No newline at end of file