587
|
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
2 |
<!--
|
|
3 |
============================================================================
|
|
4 |
Name : build.xml
|
|
5 |
Part of : Helium
|
|
6 |
|
|
7 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
8 |
All rights reserved.
|
|
9 |
This component and the accompanying materials are made available
|
|
10 |
under the terms of the License "Eclipse Public License v1.0"
|
|
11 |
which accompanies this distribution, and is available
|
|
12 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
13 |
|
|
14 |
Initial Contributors:
|
|
15 |
Nokia Corporation - initial contribution.
|
|
16 |
|
|
17 |
Contributors:
|
|
18 |
|
|
19 |
Description:
|
|
20 |
|
|
21 |
============================================================================
|
|
22 |
-->
|
|
23 |
<project name="minibuild.ido-sbs-sysdef3" default="help" xmlns:au="org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium" basedir="..\ido">
|
|
24 |
<property environment="env"/>
|
628
|
25 |
<!--property name="config.temp.build.dir" location="${ant.file.minibuild.ido-sbs}/../build"/ -->
|
|
26 |
|
|
27 |
<!-- Configuring raptor build system -->
|
|
28 |
<property name="build.system" value="sbs"/>
|
|
29 |
<property name="sysdef3.enabled" value="true"/>
|
|
30 |
<property name="qmake.enabled" value="true"/>
|
587
|
31 |
<!-- Synergy project for TB92 -->
|
|
32 |
<property name="ccm.project" value="MinibuildDomain-tr1ido#50_201013:project:tr1test1#1" />
|
|
33 |
|
|
34 |
|
628
|
35 |
<property name="build.name" value="minibuild_ido_sbs_sysdef3" />
|
587
|
36 |
<property name="build.family" value="test_minibuild_ido_sbs_sysdef3" />
|
628
|
37 |
|
|
38 |
<target name="minibuild-check-blocks">
|
587
|
39 |
<if>
|
|
40 |
<istrue value="${blocks.enabled}" />
|
|
41 |
<then>
|
|
42 |
<au:assertFileExists file="${blocks.config.dir}/helloworld_api.blocks_component.xml" />
|
|
43 |
<au:assertFileExists file="${blocks.config.dir}/helloworldcons_app.blocks_component.xml" />
|
|
44 |
</then>
|
|
45 |
</if>
|
|
46 |
</target>
|
|
47 |
|
628
|
48 |
<import file="../ido-sbs/build.xml"/>
|
587
|
49 |
|
|
50 |
<!-- Looking for package definitions files -->
|
|
51 |
<path id="system.definition.files">
|
|
52 |
<fileset dir="${ccm.project.wa_path}" includes="*/*/*/package_definition.xml" />
|
|
53 |
</path>
|
|
54 |
|
|
55 |
<!-- Defining what layer to build -->
|
628
|
56 |
<patternset id="sysdef.layers.helium_minibuild_ido" >
|
587
|
57 |
<include name="mw" />
|
|
58 |
<include name="app" />
|
|
59 |
</patternset>
|
|
60 |
|
628
|
61 |
<patternset id="sysdef.layers.helium_minibuild_ido" >
|
587
|
62 |
<include name="mw" />
|
|
63 |
<include name="app" />
|
|
64 |
</patternset>
|
|
65 |
|
628
|
66 |
<patternset id="sysdef.layers.helium_minibuild_ido_clean" >
|
587
|
67 |
<include name="mw" />
|
|
68 |
<include name="app" />
|
|
69 |
</patternset>
|
|
70 |
|
|
71 |
</project>
|
|
72 |
|
|
73 |
|