Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: AdblockPlusEngine.vcxproj

Issue 10774005: Avoid duplication between AdblockPlus and AdblockPlusEngine (Closed)
Patch Set: Created May 24, 2013, 3:48 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | AdblockPlusPlugin.vcxproj » ('j') | src/engine/main.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: AdblockPlusEngine.vcxproj
===================================================================
--- a/AdblockPlusEngine.vcxproj
+++ b/AdblockPlusEngine.vcxproj
@@ -55,11 +55,10 @@
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug Production|Win32'">
<ClCompile>
- <PrecompiledHeader>
- </PrecompiledHeader>
+ <PrecompiledHeader>Create</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <PreprocessorDefinitions>WIN32;PRECOMPILED_HEADER_FILE="stdafx.h";_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
</ClCompile>
<Link>
@@ -73,12 +72,11 @@
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release Production|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
- <PrecompiledHeader>
- </PrecompiledHeader>
+ <PrecompiledHeader>Create</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <PreprocessorDefinitions>WIN32;PRECOMPILED_HEADER_FILE="stdafx.h";NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
</ClCompile>
<Link>
@@ -93,8 +91,15 @@
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\engine\main.cpp" />
+ <ClCompile Include="src\shared\Communication.cpp" />
+ <ClCompile Include="src\shared\AutoHandle.cpp" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="src\engine\stdafx.h" />
+ <ClInclude Include="src\shared\Communication.h" />
+ <ClInclude Include="src\shared\AutoHandle.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
-</Project>
+</Project>
« no previous file with comments | « no previous file | AdblockPlusPlugin.vcxproj » ('j') | src/engine/main.cpp » ('J')

Powered by Google App Engine
This is Rietveld