sf-package/build.xml
author Dario Sestito <darios@symbian.org>
Mon, 10 Aug 2009 11:35:01 +0100
changeset 342 626d3847cf2a
parent 325 779cc88ed845
child 593 4fc8d6b0b184
permissions -rw-r--r--
Commented out clean and tools targets. Changed tool2 target into tools2_rel
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
  
18
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
     6
  <!-- import package properties -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
     7
  <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
     8
  
18
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
     9
  <!-- import common properties/targets/references -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    10
  <import file="../common/build.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 package references -->
9f36ff790ea7 Reorganized property/reference importing structure
dariosestito@L063522.prod.ad.symbian.intra
parents: 11
diff changeset
    13
  <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
    14
  
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    15
  <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
    16
  
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
    17
    <!-- 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
    18
    <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
    19
    <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
    20
      <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
    21
      <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
    22
      <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
    23
    </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
    24
    
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    25
    <runtarget target="sf-package-compile"/>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    26
  </target>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    27
  
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    28
  <target name="sf-package-compile">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    29
    
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    30
    <hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options"/>
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    31
    <hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options"/>
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    32
    
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    33
    <!-- 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
    34
    <!--
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    35
    <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
    36
      <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
    37
      <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
    38
      <hlm:arg name="command" value="CLEAN"/>
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    39
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    40
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    41
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    42
      <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
    43
      <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
    44
      <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
    45
      <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
    46
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    47
    -->
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    48
    
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    49
    <!-- 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
    50
    <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
    51
      <hlm:arg name="config" value="tools2_rel.whatlog" />
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    52
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    53
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    54
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    55
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    56
      <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
    57
      <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
    58
      <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
    59
      <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
    60
    </antcall>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    61
    
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    62
    <!-- 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
    63
    <!-- 
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    64
    <hlm:argSet id="sbs.tools.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    65
      <hlm:arg name="config" value="tools"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    66
      <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
    67
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    68
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    69
    <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
    70
      <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
    71
      <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
    72
      <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
    73
      <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
    74
      <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
    75
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    76
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    77
    
183
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
    78
    <!-- 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
    79
    <!-- 
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    80
    <hlm:argSet id="sbs.tools.var">
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    81
      <hlm:arg name="config" value="tools.whatlog"/>
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    82
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
    83
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    84
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    85
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
    86
      <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
    87
      <reference refid="sbs.tools.var" torefid="sbs.var" />
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    88
      <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
    89
      <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
    90
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
    91
    -->
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
    92
    
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    93
    <!-- 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
    94
    <!--
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    95
    <hlm:argSet id="sbs.winscw.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    96
      <hlm:arg name="config" value="winscw" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    97
      <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
    98
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
    99
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   100
    <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
   101
      <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
   102
      <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
   103
      <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
   104
      <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
   105
      <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
   106
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   107
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   108
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   109
    <!-- BUILD winscw -->
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   110
    <hlm:argSet id="sbs.winscw.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   111
      <hlm:arg name="config" value="winscw.whatlog" />
182
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
   112
      <hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" />
c35952f24212 added whatlog and check
dario
parents: 178
diff changeset
   113
    </hlm:argSet>
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   114
    <antcall target="compile-main" inheritAll="false" inheritRefs="true">
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   115
      <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
   116
      <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
   117
      <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
   118
      <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
   119
      <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
   120
    </antcall>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   121
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   122
    <!-- 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
   123
    <!--
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   124
    <hlm:argSet id="sbs.armv5.clean.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   125
      <hlm:arg name="config" value="armv5" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   126
      <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
   127
      <hlm:arg name="command" value="CLEAN"/>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   128
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   129
    <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
   130
      <param name="build.system" value="${sf.spec.build.system}" />
177
734d44a79c17 Given a dummy value to the configuration list
dario
parents: 176
diff changeset
   131
      <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
   132
      <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
   133
      <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
   134
      <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
   135
    </antcall>
342
626d3847cf2a Commented out clean and tools targets. Changed tool2 target into tools2_rel
Dario Sestito <darios@symbian.org>
parents: 325
diff changeset
   136
    -->
323
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   137
    
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   138
    <!-- BUILD armv5 -->
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   139
    <hlm:argSet id="sbs.armv5.var">
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   140
      <hlm:arg name="config" value="armv5.whatlog" />
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   141
      <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
   142
    </hlm:argSet>
5c33f37d47a4 Restructured package build targets and sbs calls
Dario Sestito <darios@symbian.org>
parents: 319
diff changeset
   143
    <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
   144
      <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
   145
      <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
   146
      <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
   147
      <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
   148
      <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
   149
    </antcall>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   150
    
183
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
   151
    <!-- 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
   152
    <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
   153
      <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
   154
      <!-- 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
   155
    </exec>
8025a9486931 Doing WHAT with .whatlog. Added check with an exec task (some arguments are not parameterized).
dario
parents: 182
diff changeset
   156
    
170
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   157
  </target>
31922c5222d7 Changes to support clean check and avoid filtering the logs
dario
parents: 18
diff changeset
   158
  
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   159
</project>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   160