Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 203616f70a5bfdfd06564130d74e57754273108d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<project name="Product Build allElements Delegator">
	<property name="archiveNamePrefix" value="${buildId}"/>
	
 	<!-- ===================================================================== -->
 	<!-- Run a given ${target} on all elements being built                     -->
 	<!-- Add on <ant> task for each top level element being built.             -->
 	<!-- ===================================================================== -->
 	<target name="allElementsDelegator">
 		<ant antfile="${genericTargets}" target="${target}">
	 		<property name="type" value="feature" />
	 		<property name="id" value="@ELEMENT@" />
 		</ant>
 	</target>
 
 	<!-- ===================================================================== -->
 	<!-- Targets to assemble the built elements for particular configurations  -->
 	<!-- These generally call the generated assemble scripts (named in         -->
 	<!-- ${assembleScriptName}) but may also add pre and post processing       -->
 	<!-- Add one target for each root element and each configuration           -->
 	<!-- ===================================================================== -->
 	<target name="assemble.@ELEMENT@">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">
			<property name="archiveName" value="${archiveNamePrefix}.zip"/>
		</ant>
 	</target>
	
	<target name="assemble.@ELEMENT@.win32.win32.x86_64">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-win32.win32.x86_64.zip"/>
		</ant>

 	</target>
 	
 	<target name="assemble.@ELEMENT@.linux.gtk.x86_64">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-linux.gtk.x86_64.zip"/>
		</ant>
 	</target>
	
 	<target name="assemble.@ELEMENT@.group.group.group">
 		<ant antfile="${assembleScriptName}" dir="${buildDirectory}">			
 			<property name="archiveName" value="${archiveNamePrefix}-group.zip"/>
		</ant>
 	</target>
</project>

Back to the top