Left: | ||
Right: |
OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- | |
3 Warning: This file has been edited by hand with PropertyGroup Conditions tha t Visual Studio does not have UI for. | |
4 Please do not edit this file within Visual Studio. | |
5 Simply loading it into Visual Studio will cause it to write some default ent ries, so that's where the extra cruft come from. | |
6 These conditions work fine with MSBUILD, which is all we care about. | |
7 --> | |
8 <Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> | |
9 <ItemGroup Label="ProjectConfigurations"> | |
10 <ProjectConfiguration Include="Debug Production|Win32"> | |
11 <Configuration>Debug Production</Configuration> | |
12 <Platform>Win32</Platform> | |
13 </ProjectConfiguration> | |
14 <ProjectConfiguration Include="Debug Production|x64"> | |
15 <Configuration>Debug Production</Configuration> | |
16 <Platform>x64</Platform> | |
17 </ProjectConfiguration> | |
18 <ProjectConfiguration Include="Debug Test|Win32"> | |
19 <Configuration>Debug Test</Configuration> | |
20 <Platform>Win32</Platform> | |
21 </ProjectConfiguration> | |
22 <ProjectConfiguration Include="Debug Test|x64"> | |
23 <Configuration>Debug Test</Configuration> | |
24 <Platform>x64</Platform> | |
25 </ProjectConfiguration> | |
26 <ProjectConfiguration Include="Release Production|Win32"> | |
27 <Configuration>Release Production</Configuration> | |
28 <Platform>Win32</Platform> | |
29 </ProjectConfiguration> | |
30 <ProjectConfiguration Include="Release Production|x64"> | |
31 <Configuration>Release Production</Configuration> | |
32 <Platform>x64</Platform> | |
33 </ProjectConfiguration> | |
34 <ProjectConfiguration Include="Release Test|Win32"> | |
35 <Configuration>Release Test</Configuration> | |
36 <Platform>Win32</Platform> | |
37 </ProjectConfiguration> | |
38 <ProjectConfiguration Include="Release Test|x64"> | |
39 <Configuration>Release Test</Configuration> | |
40 <Platform>x64</Platform> | |
41 </ProjectConfiguration> | |
42 </ItemGroup> | |
43 <ItemGroup> | |
44 <None Include="Makefile.DevInstall" /> | |
45 </ItemGroup> | |
46 <PropertyGroup Label="Globals"> | |
47 <ProjectGuid>{58274382-2D89-40F5-A132-E4311747D2B5}</ProjectGuid> | |
48 <Keyword>MakeFileProj</Keyword> | |
49 <ProjectName>Developer Install</ProjectName> | |
50 </PropertyGroup> | |
51 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | |
52 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Production|Wi n32'" Label="Configuration"> | |
53 <ConfigurationType>Makefile</ConfigurationType> | |
54 <UseDebugLibraries>true</UseDebugLibraries> | |
55 <PlatformToolset>v110</PlatformToolset> | |
56 </PropertyGroup> | |
57 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Production|x6 4'" Label="Configuration"> | |
58 <ConfigurationType>Makefile</ConfigurationType> | |
59 <UseDebugLibraries>true</UseDebugLibraries> | |
60 <PlatformToolset>v110</PlatformToolset> | |
61 </PropertyGroup> | |
62 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Test|Win32'" Label="Configuration"> | |
63 <ConfigurationType>Makefile</ConfigurationType> | |
64 <UseDebugLibraries>true</UseDebugLibraries> | |
65 <PlatformToolset>v110</PlatformToolset> | |
66 </PropertyGroup> | |
67 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Test|x64'" La bel="Configuration"> | |
68 <ConfigurationType>Makefile</ConfigurationType> | |
69 <UseDebugLibraries>true</UseDebugLibraries> | |
70 <PlatformToolset>v110</PlatformToolset> | |
71 </PropertyGroup> | |
72 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Production| Win32'" Label="Configuration"> | |
73 <ConfigurationType>Makefile</ConfigurationType> | |
74 <UseDebugLibraries>false</UseDebugLibraries> | |
75 <PlatformToolset>v110</PlatformToolset> | |
76 </PropertyGroup> | |
77 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Production| x64'" Label="Configuration"> | |
78 <ConfigurationType>Makefile</ConfigurationType> | |
79 <UseDebugLibraries>false</UseDebugLibraries> | |
80 <PlatformToolset>v110</PlatformToolset> | |
81 </PropertyGroup> | |
82 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Test|Win32' " Label="Configuration"> | |
83 <ConfigurationType>Makefile</ConfigurationType> | |
84 <UseDebugLibraries>false</UseDebugLibraries> | |
85 <PlatformToolset>v110</PlatformToolset> | |
86 </PropertyGroup> | |
87 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Test|x64'" Label="Configuration"> | |
88 <ConfigurationType>Makefile</ConfigurationType> | |
89 <UseDebugLibraries>false</UseDebugLibraries> | |
90 <PlatformToolset>v110</PlatformToolset> | |
91 </PropertyGroup> | |
92 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | |
93 <ImportGroup Label="ExtensionSettings"> | |
94 </ImportGroup> | |
95 <PropertyGroup Label="UserMacros" /> | |
96 <PropertyGroup> | |
97 <NMakeMacros>ProjectDir="$(ProjectDir)\"</NMakeMacros> | |
98 </PropertyGroup> | |
99 <PropertyGroup Condition="'$(Platform)'=='Win32'"> | |
100 <OutDir>$(ProjectDir)build\ia32\$(Configuration)\</OutDir> | |
101 <NMakeMacros>$(NMakeMacros) OutDir="$(OutDir)\" DLL="$(OutDir)AdblockPlus.dl l"</NMakeMacros> | |
102 </PropertyGroup> | |
103 <PropertyGroup Condition="'$(Platform)'=='x64'"> | |
104 <OutDir>$(ProjectDir)build\x64\$(Configuration)\</OutDir> | |
105 <OutDir32>$(ProjectDir)build\ia32\$(Configuration)\</OutDir32> | |
106 <NMakeMacros>$(NMakeMacros) OutDir="$(OutDir)\" DLL="$(OutDir)AdblockPlusx64 .dll" DLL32="$(OutDir32)AdblockPlus.dll"</NMakeMacros> | |
Wladimir Palant
2013/06/18 15:18:33
We should be registering the DLL that was built, n
Eric
2013/06/18 16:00:19
On a 64-bit system, we have to register both DLL's
Wladimir Palant
2013/06/19 07:14:15
This is not the installer - it's our development e
Eric
2013/06/19 15:22:54
Point taken.
| |
107 </PropertyGroup> | |
108 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Production|Wi n32'"> | |
109 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
110 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
111 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
112 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);_DEBUG</ NMakePreprocessorDefinitions> | |
113 <OutDir>$(ProjectDir)build\ia32\$(Configuration)\</OutDir> | |
114 <IntDir>$(ProjectDir)build\ia32\$(Configuration)\</IntDir> | |
115 </PropertyGroup> | |
116 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Production|x6 4'"> | |
117 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
118 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
119 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
120 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);_DEBUG</ NMakePreprocessorDefinitions> | |
121 <OutDir>$(ProjectDir)build\x64\$(Configuration)\</OutDir> | |
122 <IntDir>$(ProjectDir)build\x64\$(Configuration)\</IntDir> | |
123 </PropertyGroup> | |
124 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Test|Win32'"> | |
125 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
126 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
127 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
128 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);_DEBUG</ NMakePreprocessorDefinitions> | |
129 <OutDir>$(ProjectDir)build\ia32\$(Configuration)\</OutDir> | |
130 <IntDir>$(ProjectDir)build\ia32\$(Configuration)\</IntDir> | |
131 </PropertyGroup> | |
132 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug Test|x64'"> | |
133 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
134 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
135 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
136 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);_DEBUG</ NMakePreprocessorDefinitions> | |
137 <OutDir>$(ProjectDir)build\x64\$(Configuration)\</OutDir> | |
138 <IntDir>$(ProjectDir)build\x64\$(Configuration)\</IntDir> | |
139 </PropertyGroup> | |
140 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Production| Win32'"> | |
141 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
142 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
143 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
144 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);NDEBUG</ NMakePreprocessorDefinitions> | |
145 <OutDir>$(ProjectDir)build\ia32\$(Configuration)\</OutDir> | |
146 <IntDir>$(ProjectDir)build\ia32\$(Configuration)\</IntDir> | |
147 </PropertyGroup> | |
148 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Production| x64'"> | |
149 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
150 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
151 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
152 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);NDEBUG</ NMakePreprocessorDefinitions> | |
153 <OutDir>$(ProjectDir)build\x64\$(Configuration)\</OutDir> | |
154 <IntDir>$(ProjectDir)build\x64\$(Configuration)\</IntDir> | |
155 </PropertyGroup> | |
156 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Test|Win32' "> | |
157 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
158 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
159 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
160 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);NDEBUG</ NMakePreprocessorDefinitions> | |
161 <OutDir>$(ProjectDir)build\ia32\$(Configuration)\</OutDir> | |
162 <IntDir>$(ProjectDir)build\ia32\$(Configuration)\</IntDir> | |
163 </PropertyGroup> | |
164 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release Test|x64'"> | |
165 <NMakeBuildCommandLine>nmake -nologo -f Makefile.DevInstall build $(NMakeMac ros)</NMakeBuildCommandLine> | |
166 <NMakeCleanCommandLine>nmake -nologo -f Makefile.DevInstall clean $(NMakeMac ros)</NMakeCleanCommandLine> | |
167 <NMakeReBuildCommandLine>nmake -nologo -f Makefile.DevInstall rebuild $(NMak eMacros)</NMakeReBuildCommandLine> | |
168 <NMakePreprocessorDefinitions>WIN32;$(NMakePreprocessorDefinitions);NDEBUG</ NMakePreprocessorDefinitions> | |
169 <OutDir>$(ProjectDir)build\x64\$(Configuration)\</OutDir> | |
170 <IntDir>$(ProjectDir)build\x64\$(Configuration)\</IntDir> | |
171 </PropertyGroup> | |
172 <ItemDefinitionGroup> | |
173 </ItemDefinitionGroup> | |
174 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | |
175 <ImportGroup Label="ExtensionTargets"> | |
176 </ImportGroup> | |
177 </Project> | |
OLD | NEW |