sf-package/build.xml
author Dario Sestito <darios@symbian.org>
Mon, 05 Oct 2009 18:06:48 +0100
changeset 593 4fc8d6b0b184
parent 342 626d3847cf2a
child 637 3effbd6728d4
permissions -rw-r--r--
Allow codeline-specific property file to be read (if present)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
171
a6f2b8d175d0 The prefix "hlm" for element "hlm:argSet" was not bound.
dario
parents: 170
diff changeset
     2
<project name="SF-PACKAGE-CONFIG" xmlns:hlm="http://www.nokia.com/helium">
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     3
  <!-- location of this config -->
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     4
  <dirname property="sf.package.config.dir" file="${ant.file.SF-PACKAGE-CONFIG}"/>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     5
  
593
4fc8d6b0b184 Allow codeline-specific property file to be read (if present)
Dario Sestito <darios@symbian.org>
parents: 342
diff changeset
     6
  <!-- import codeline-specific properties -->
4fc8d6b0b184 Allow codeline-specific property file to be read (if present)
Dario Sestito <darios@symbian.org>
parents: 342
diff changeset
     7
  <import file="${sf.package.config.dir}/${sf.spec.job.codeline}_props.ant.xml" optional="yes"/>
4fc8d6b0b184 Allow codeline-specific property file to be read (if present)
Dario Sestito <darios@symbian.org>
parents: 342
diff changeset
     8
  
18
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
     9
  <!-- import package properties -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    10
  <import file="${sf.package.config.dir}/package_props.ant.xml" />
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    11
  
18
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    12
  <!-- import common properties/targets/references -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    13
  <import file="../common/build.xml" />
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    14
  
18
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    15
  <!-- import package references -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    16
  <import file="${sf.package.config.dir}/package_refs.ant.xml" />
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    17
  
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    18
  <target name="sf-compile">
319
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    19
  
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    20
    <!-- Check that package_definition is not in v 3.0.0 otherwise transforms it to 2.0.1 -->
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    21
    <echo message="Check that model file is in a version usable by Raptor"/>
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    22
    <exec executable="perl" dir="${sf.common.config.dir}/sysdefdowngrade" failonerror="false" output="${build.log.dir}/sysdefdowngrade.log">
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    23
      <arg value="sysdefdowngrade.pl"/>
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    24
      <arg value="--model=${build.drive}/${sf.spec.systemdefinition.location}"/>
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    25
      <arg value="--sources=${sf.spec.sourcesync.sourcespecdir}/${sf.spec.sourcesync.sourcespecfile}"/>
257557b39754 Added transformation of model file from version 3.0.0 to a version usable by Raptor
Dario Sestito <darios@symbian.org>
parents: 184
diff changeset
    26
    </exec>
325
779cc88ed845 Allow subprojects within a project repo and model file relative to the subproject dir
Dario Sestito <darios@symbian.org>
parents: 323
diff changeset
    27
    
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    28
    <runtarget target="sf-package-compile"/>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    29
  </target>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    30
  
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    31
  <target name="sf-package-compile">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    32
    
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    33
    <hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options"/>
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    34
    <hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options"/>
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    35
    
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    36
    <!-- BUILD tools2_rel CLEAN -->
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    37
    <!--
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    38
    <hlm:argSet id="sbs.tools2_rel.clean.var">
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    39
      <hlm:arg name="config" value="tools2_rel" />
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    40
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    41
      <hlm:arg name="command" value="CLEAN"/>
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    42
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    43
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    44
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    45
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    46
      <reference refid="sbs.tools2_rel.clean.var" torefid="sbs.var" />
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    47
      <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    48
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    49
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    50
    -->
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    51
    
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    52
    <!-- BUILD tools2_rel -->
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    53
    <hlm:argSet id="sbs.tools2_rel.var">
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    54
      <hlm:arg name="config" value="tools2_rel.whatlog" />
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    55
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    56
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    57
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    58
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    59
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    60
      <reference refid="sbs.tools2_rel.var" torefid="sbs.var" />
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    61
      <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    62
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    63
    </antcall>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    64
    
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    65
    <!-- BUILD tools CLEAN -->
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    66
    <!-- 
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    67
    <hlm:argSet id="sbs.tools.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    68
      <hlm:arg name="config" value="tools"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    69
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    70
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    71
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    72
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    73
      <param name="build.system" value="${sf.spec.build.system}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    74
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    75
      <reference refid="sbs.tools.clean.var" torefid="sbs.var" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    76
      <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    77
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    78
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    79
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    80
    
183
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
    81
    <!-- BUILD tools -->
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    82
    <!-- 
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    83
    <hlm:argSet id="sbs.tools.var">
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    84
      <hlm:arg name="config" value="tools.whatlog"/>
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    85
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    86
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    87
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    88
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    89
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    90
      <reference refid="sbs.tools.var" torefid="sbs.var" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    91
      <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    92
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    93
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    94
    -->
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    95
    
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    96
    <!-- BUILD winscw CLEAN -->
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    97
    <!--
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    98
    <hlm:argSet id="sbs.winscw.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    99
      <hlm:arg name="config" value="winscw" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   100
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   101
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   102
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   103
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   104
      <param name="build.system" value="${sf.spec.build.system}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   105
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   106
      <reference refid="sbs.winscw.clean.var" torefid="sbs.var" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   107
      <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   108
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   109
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   110
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   111
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   112
    <!-- BUILD winscw -->
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   113
    <hlm:argSet id="sbs.winscw.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   114
      <hlm:arg name="config" value="winscw.whatlog" />
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
   115
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
   116
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   117
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   118
      <param name="build.system" value="${sf.spec.build.system}" />
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   119
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   120
      <reference refid="sbs.winscw.var" torefid="sbs.var" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   121
      <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   122
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   123
    </antcall>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   124
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   125
    <!-- BUILD armv5 CLEAN -->
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   126
    <!--
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   127
    <hlm:argSet id="sbs.armv5.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   128
      <hlm:arg name="config" value="armv5" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   129
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   130
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   131
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   132
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   133
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
   134
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   135
      <reference refid="sbs.armv5.clean.var" torefid="sbs.var" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   136
      <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   137
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   138
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   139
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   140
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   141
    <!-- BUILD armv5 -->
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   142
    <hlm:argSet id="sbs.armv5.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   143
      <hlm:arg name="config" value="armv5.whatlog" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   144
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   145
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   146
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   147
      <param name="build.system" value="${sf.spec.build.system}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   148
      <param name="sysdef.configurations.list" value="${sf.spec.sysdef.configurations.list}" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   149
      <reference refid="sbs.armv5.var" torefid="sbs.var" />
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   150
      <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   151
      <reference refid="sf.spec.system.definition.files" torefid="system.definition.files" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   152
    </antcall>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   153
    
183
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
   154
    <!-- CHECK -->
184
f50ee414b574 Reimplemented --check as the previous version didn't work (also most of the arguments are parameterized now)
dario
parents: 183
diff changeset
   155
    <exec executable="cmd" dir="${build.drive}/" output="${build.drive}/output\logs\build_check_compile.log">
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   156
      <arg value="/c sbs.bat -s ${build.drive}/output\build\canonical_system_definition_SF.xml -k -c tools2_rel -c winscw -c armv5 -j 32 --check -m ${build.drive}/output\logs\build_check_Makefile"/>
184
f50ee414b574 Reimplemented --check as the previous version didn't work (also most of the arguments are parameterized now)
dario
parents: 183
diff changeset
   157
      <!-- argument of -j option can be parameterized with: ${number.of.threads} -->
183
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
   158
    </exec>
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
   159
    
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   160
  </target>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   161
  
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   162
</project>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   163