Skip to content

Commit 3740063

Browse files
added project group in order to use a Build Group
1 parent 733e5fb commit 3740063

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

AutoGetIt.groupproj

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{E6378F97-4251-4F35-BEC4-B01961A1E949}</ProjectGuid>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<Projects Include="AutoGetItVCL.dproj">
7+
<Dependencies/>
8+
</Projects>
9+
</ItemGroup>
10+
<ProjectExtensions>
11+
<Borland.Personality>Default.Personality.12</Borland.Personality>
12+
<Borland.ProjectType/>
13+
<BorlandProject>
14+
<Default.Personality/>
15+
</BorlandProject>
16+
</ProjectExtensions>
17+
<Target Name="AutoGetItVCL">
18+
<MSBuild Projects="AutoGetItVCL.dproj"/>
19+
</Target>
20+
<Target Name="AutoGetItVCL:Clean">
21+
<MSBuild Projects="AutoGetItVCL.dproj" Targets="Clean"/>
22+
</Target>
23+
<Target Name="AutoGetItVCL:Make">
24+
<MSBuild Projects="AutoGetItVCL.dproj" Targets="Make"/>
25+
</Target>
26+
<Target Name="Build">
27+
<CallTarget Targets="AutoGetItVCL"/>
28+
</Target>
29+
<Target Name="Clean">
30+
<CallTarget Targets="AutoGetItVCL:Clean"/>
31+
</Target>
32+
<Target Name="Make">
33+
<CallTarget Targets="AutoGetItVCL:Make"/>
34+
</Target>
35+
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
36+
<ItemGroup Condition="'$(BuildGroup)'=='Release'">
37+
<BuildGroupProject Include="AutoGetItVCL.dproj">
38+
<ProjectGuid>{022F0643-10FD-4011-8377-70FD8506237A}</ProjectGuid>
39+
<Configurations>Release</Configurations>
40+
<Platforms>Win32;Win64</Platforms>
41+
<Enabled>True</Enabled>
42+
</BuildGroupProject>
43+
</ItemGroup>
44+
<ItemGroup Condition="'$(BuildGroup)'=='debug-32'">
45+
<BuildGroupProject Include="AutoGetItVCL.dproj">
46+
<ProjectGuid>{022F0643-10FD-4011-8377-70FD8506237A}</ProjectGuid>
47+
<Configurations>Debug</Configurations>
48+
<Platforms>Win32</Platforms>
49+
<Enabled>True</Enabled>
50+
</BuildGroupProject>
51+
</ItemGroup>
52+
</Project>

0 commit comments

Comments
 (0)