OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso
ft.com/developer/msbuild/2003"> | 2 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso
ft.com/developer/msbuild/2003"> |
3 <ItemGroup Label="ProjectConfigurations"> | 3 <ItemGroup Label="ProjectConfigurations"> |
4 <ProjectConfiguration Include="Debug Production|Win32"> | 4 <ProjectConfiguration Include="Debug Production|Win32"> |
5 <Configuration>Debug Production</Configuration> | 5 <Configuration>Debug Production</Configuration> |
6 <Platform>Win32</Platform> | 6 <Platform>Win32</Platform> |
7 </ProjectConfiguration> | 7 </ProjectConfiguration> |
8 <ProjectConfiguration Include="Release Production|Win32"> | 8 <ProjectConfiguration Include="Release Production|Win32"> |
9 <Configuration>Release Production</Configuration> | 9 <Configuration>Release Production</Configuration> |
10 <Platform>Win32</Platform> | 10 <Platform>Win32</Platform> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 <EnableCOMDATFolding>true</EnableCOMDATFolding> | 85 <EnableCOMDATFolding>true</EnableCOMDATFolding> |
86 <OptimizeReferences>true</OptimizeReferences> | 86 <OptimizeReferences>true</OptimizeReferences> |
87 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base.
lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</
AdditionalDependencies> | 87 <AdditionalDependencies>libadblockplus.lib;shlwapi.lib;user32.lib;v8_base.
lib;v8_snapshot.lib;winhttp.lib;winmm.lib;ws2_32.lib;%(AdditionalDependencies)</
AdditionalDependencies> |
88 <OutputFile>$(ProjectDir)build\ia32\$(Configuration)\AdblockPlusEngine.exe
</OutputFile> | 88 <OutputFile>$(ProjectDir)build\ia32\$(Configuration)\AdblockPlusEngine.exe
</OutputFile> |
89 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs> | 89 <DelayLoadDLLs>Shell32.dll</DelayLoadDLLs> |
90 </Link> | 90 </Link> |
91 </ItemDefinitionGroup> | 91 </ItemDefinitionGroup> |
92 <ItemGroup> | 92 <ItemGroup> |
93 <ClCompile Include="src\engine\main.cpp" /> | 93 <ClCompile Include="src\engine\main.cpp" /> |
94 <ClCompile Include="src\engine\Debug.cpp" /> | 94 <ClCompile Include="src\engine\Debug.cpp" /> |
95 <ClCompile Include="src\engine\Utils.cpp" /> | |
96 <ClCompile Include="src\shared\Communication.cpp"> | 95 <ClCompile Include="src\shared\Communication.cpp"> |
97 <PrecompiledHeader>NotUsing</PrecompiledHeader> | 96 <PrecompiledHeader>NotUsing</PrecompiledHeader> |
98 </ClCompile> | 97 </ClCompile> |
99 <ClCompile Include="src\shared\AutoHandle.cpp"> | 98 <ClCompile Include="src\shared\AutoHandle.cpp"> |
100 <PrecompiledHeader>NotUsing</PrecompiledHeader> | 99 <PrecompiledHeader>NotUsing</PrecompiledHeader> |
101 </ClCompile> | 100 </ClCompile> |
| 101 <ClCompile Include="src\shared\Utils.cpp"> |
| 102 <PrecompiledHeader>NotUsing</PrecompiledHeader> |
| 103 </ClCompile> |
102 </ItemGroup> | 104 </ItemGroup> |
103 <ItemGroup> | 105 <ItemGroup> |
104 <ClInclude Include="src\engine\stdafx.h" /> | 106 <ClInclude Include="src\engine\stdafx.h" /> |
105 <ClInclude Include="src\shared\Communication.h" /> | 107 <ClInclude Include="src\shared\Communication.h" /> |
106 <ClInclude Include="src\shared\AutoHandle.h" /> | 108 <ClInclude Include="src\shared\AutoHandle.h" /> |
107 </ItemGroup> | 109 </ItemGroup> |
108 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | 110 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
109 <ImportGroup Label="ExtensionTargets"> | 111 <ImportGroup Label="ExtensionTargets"> |
110 </ImportGroup> | 112 </ImportGroup> |
111 </Project> | 113 </Project> |
OLD | NEW |