| 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> |