sf-platform/build.xml
author ShabeR@UK-SHABER
Tue, 07 Apr 2009 12:12:12 +0100
changeset 35 9f78d5788229
parent 34 c10840c6fcbb
child 36 af82fccdcb75
permissions -rw-r--r--
Apply sbs clean before build. TODO add generic clean target next.
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"?>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
     2
<project name="SF-PLATFORM-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.platform.config.dir" file="${ant.file.SF-PLATFORM-CONFIG}"/>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     5
  
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     6
  <!--
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     7
  * Property defaults
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     8
   -->
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
     9
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    10
  <!--
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    11
  
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    12
  * Load platform specific properties. Mandatory that this file exists otherwise
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    13
  * the target will fail.
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    14
  
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    15
   -->
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    16
  <loadproperties srcFile="${sf.platform.config.dir}/platform.properties"/>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
    17
  
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    18
  <!-- workaround until GenXML can merge v2.0.0 fragments -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    19
  <target name="create-canonical-sysdef-file">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    20
            
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    21
       <if>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    22
          <!-- TODO use scripting to match this -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    23
          <equals arg1="${sf.spec.sysdef.version}" arg2="1.4.0" /> 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    24
          <then>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    25
            <echo message="Using System Definition v1.4.0 "/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    26
            <runtarget target="compile.create-canonical-sysdef-file"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    27
          </then>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    28
          <else>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    29
            <runtarget target="preprocess-sysdef-files"/>  
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    30
            <echo message="Exporting preprocessed System Definition"/> 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    31
            
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    32
            <!-- TODO use better method to export or wait for GenXML fix?-->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    33
            <copy file="${build.output.dir}\build\input\0000000000000001_system_definition.xml" 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    34
                  tofile="${canonical.sysdef.file}" failonerror="true" verbose="true"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    35
          </else>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    36
        </if>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    37
          
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    38
  </target>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    39
    
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    40
  <!-- 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    41
    == Name: PREPROCESS-SYSDEF-FILES
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    42
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    43
    == Desc: Override of default target in order to deal with symbian os
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    44
    ==       system_definition.xml that does not have /sf source prefix    
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    45
    ==       
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    46
    ==       TODO get this moved as a Helium core target?
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    47
    -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    48
  <target name="preprocess-sysdef-files">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    49
        <mkdir dir="${build.output.dir}/build/input"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    50
        <delete verbose="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    51
            <fileset dir="${build.output.dir}/build/input/" includes="**"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    52
        </delete>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    53
        
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    54
        <for param="file">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    55
            <resources refid="system.definition.files"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    56
            <sequential>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    57
                <copy todir="${build.output.dir}/build/input" verbose="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    58
                    <fileset file="@{file}"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    59
                    <filterchain>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    60
                        <replaceregex pattern="bldFile=&quot;os" replace="bldFile=&quot;sf\\\\os" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    61
                        <replaceregex pattern="mrp=&quot;os" replace="mrp=&quot;sf\\\\os" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    62
                        <replaceregex pattern="bldFile=&quot;mw" replace="bldFile=&quot;sf\\\\mw" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    63
                        <replaceregex pattern="mrp=&quot;mw" replace="mrp=&quot;sf\\\\mw" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    64
                        <replaceregex pattern="bldFile=&quot;app" replace="bldFile=&quot;sf\\\\app" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    65
                        <replaceregex pattern="mrp=&quot;app" replace="mrp=&quot;sf\\\\app" flags="gi"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    66
                        <expandproperties/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    67
                    </filterchain>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    68
                    <mapper>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    69
                        <scriptmapper language="jep" src="${helium.dir}/tools/common/jep/unique_filename.jep"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    70
                    </mapper>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    71
                </copy>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    72
            </sequential>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    73
        </for>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    74
    </target>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    75
  
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    76
  <!-- 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    77
    == Name: SF-COMPILE
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    78
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    79
    == Desc: Override of common sf-compile target defined in
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    80
    ==       common\build.xml
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    81
    ==       
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    82
    ==       os  build will be skipped if sf.spec.os.skipbuild=true
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    83
    ==       s60 build will be skipped if sf.spec.s60.skipbuild=true
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    84
    == 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    85
    -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    86
  <target name="sf-compile">
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    87
  
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    88
    <!-- TODO clean up to single target once genxml v2.0.0 merge is fixed -->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    89
    <if><istrue value="${sf.spec.splitbuild}"/>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    90
       <then>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    91
       <if><istrue value="${sf.spec.os.skipbuild}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    92
            <then><echo message="Skipping OS build"/></then>      
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    93
       <else><runtarget target="sf-os-compile"/></else></if>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    94
       
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    95
       <if><istrue value="${sf.spec.s60.skipbuild}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    96
            <then><echo message="Skipping S60 build"/></then>       
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
    97
       <else><runtarget target="sf-s60-compile"/></else></if>
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    98
	   </then>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
    99
	   <else>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   100
	        <!-- TODO targets for single sysdef build -->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   101
	   
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   102
	   </else>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   103
    </if>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   104
  </target>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   105
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   106
  <!-- 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   107
    == Name: SF-OS-COMPILE
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   108
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   109
    == Desc: Compile OS part of build using the spec defined in:
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   110
    == 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   111
    ==         - job_props.ant.xml
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   112
    ==         - job_refs.ant.xml
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   113
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   114
    -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   115
  <target name="sf-os-compile">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   116
      
34
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   117
        <hlm:argSet id="sbs.tools2.var">
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   118
                <hlm:arg name="config" value="tools2_rel" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   119
                <hlm:arg name="singlejob" value="false" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   120
                <hlm:arg name="enable-filter" value="true" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   121
        </hlm:argSet>
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   122
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   123
		<hlm:argSet id="sbs.tools2.clean.var">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   124
                <hlm:arg name="config" value="tools2_rel" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   125
                <hlm:arg name="singlejob" value="false" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   126
                <hlm:arg name="enable-filter" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   127
				<hlm:arg name="command" value="CLEAN" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   128
        </hlm:argSet>
34
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   129
        
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   130
        <hlm:argSet id="sbs.tools.var"> 
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   131
                <hlm:arg name="config" value="tools_rel" />
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   132
                <hlm:arg name="singlejob" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   133
                <hlm:arg name="enable-filter" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   134
        </hlm:argSet>
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   135
		
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   136
		<hlm:argSet id="sbs.tools.clean.var"> 
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   137
                <hlm:arg name="config" value="tools_rel" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   138
                <hlm:arg name="singlejob" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   139
                <hlm:arg name="enable-filter" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   140
				<hlm:arg name="command" value="CLEAN" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   141
        </hlm:argSet>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   142
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   143
        <hlm:argSet id="sbs.main.sbs.var">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   144
                <hlm:arg name="config" value="${sf.spec.sbs.config}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   145
                <hlm:arg name="enable-filter" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   146
        </hlm:argSet>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   147
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   148
		<hlm:argSet id="sbs.main.clean.sbs.var">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   149
                <hlm:arg name="config" value="${sf.spec.sbs.config}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   150
                <hlm:arg name="enable-filter" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   151
				<hlm:arg name="command" value="CLEAN" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   152
        </hlm:argSet>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   153
		
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   154
        <hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   155
        <hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   156
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   157
		<!-- OS clean tools2 build first>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   158
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   159
                <param name="build.system" value="${sf.spec.build.system}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   160
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   161
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   162
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   163
                <reference refid="sbs.tools2.clean.var" torefid="sbs.var" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   164
                <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   165
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   166
        </antcall-->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   167
		
34
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   168
        <!-- OS tools2 build first-->
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   169
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   170
                <param name="build.system" value="${sf.spec.build.system}" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   171
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   172
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   173
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   174
                <reference refid="sbs.tools2.var" torefid="sbs.var" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   175
                <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   176
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   177
        </antcall>
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   178
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   179
		<!-- OS clean tools build after tools2>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   180
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   181
                <param name="build.system" value="${sf.spec.build.system}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   182
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   183
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   184
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   185
                <reference refid="sbs.tools.clean.var" torefid="sbs.var" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   186
                <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   187
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   188
        </antcall-->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   189
		
34
c10840c6fcbb Update Platform Config to build tools2 before tools - which must be run in single thread. Also update sync template to sync in parallel.
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 31
diff changeset
   190
        <!-- OS tools build after tools2 -->
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   191
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   192
                <param name="build.system" value="${sf.spec.build.system}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   193
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   194
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   195
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   196
                <reference refid="sbs.tools.var" torefid="sbs.var" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   197
                <reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   198
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   199
        </antcall>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   200
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   201
		<!-- OS clean main build -->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   202
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   203
                <param name="build.system" value="${sf.spec.build.system}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   204
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   205
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   206
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>                    
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   207
                <reference refid="sbs.main.clean.sbs.var" torefid="sbs.var" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   208
                <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   209
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   210
        </antcall> 
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   211
		
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   212
        <!-- OS main build -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   213
        <antcall target="compile-main" inheritAll="false" inheritRefs="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   214
                <param name="build.system" value="${sf.spec.build.system}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   215
                <param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   216
                <param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   217
                <param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/>                    
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   218
                <reference refid="sbs.main.sbs.var" torefid="sbs.var" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   219
                <reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   220
                <reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   221
        </antcall>            
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   222
  </target>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   223
  
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   224
  <!-- 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   225
    == Name: SF-S60-COMPILE
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   226
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   227
    == Desc: Compile S60 part of build using the spec defined in:
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   228
    == 
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   229
    ==         - job_props.ant.xml
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   230
    ==         - job_refs.ant.xml
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   231
    ==
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   232
    -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   233
  <target name="sf-s60-compile">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   234
  
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   235
        <hlm:argSet id="sbs.tools.var">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   236
          			<hlm:arg name="config" value="${sf.spec.sbs.tools.config}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   237
          			<hlm:arg name="singlejob" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   238
          			<hlm:arg name="enable-filter" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   239
    		</hlm:argSet>
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   240
			
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   241
			<hlm:argSet id="sbs.tools.clean.var">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   242
          			<hlm:arg name="config" value="${sf.spec.sbs.tools.config}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   243
          			<hlm:arg name="singlejob" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   244
          			<hlm:arg name="enable-filter" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   245
    		</hlm:argSet>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   246
    
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   247
    		<hlm:argSet id="sbs.main.sbs.var">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   248
          			<hlm:arg name="config" value="${sf.spec.sbs.config}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   249
          			<hlm:arg name="enable-filter" value="true" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   250
    		</hlm:argSet>
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   251
			
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   252
			<hlm:argSet id="sbs.main.clean.sbs.var">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   253
          			<hlm:arg name="config" value="${sf.spec.sbs.config}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   254
          			<hlm:arg name="enable-filter" value="true" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   255
					<hlm:arg name="command" value="CLEAN" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   256
    		</hlm:argSet>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   257
        
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   258
    		<hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   259
    		<hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options" />
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   260
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   261
            <!-- s60 clean tools build>
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   262
    		<antcall target="compile-main" inheritAll="false" inheritRefs="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   263
          			<param name="build.system" value="${sf.spec.build.system}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   264
          			<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   265
                    <param name="sf.spec.sysdef.version" value ="${sf.spec.s60.sysdef.version}"/>                                   
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   266
          			<reference refid="sbs.tools.clean.var" torefid="sbs.var" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   267
          			<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   268
          			<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   269
    		</antcall-->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   270
			
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   271
            <!-- s60  tools build -->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   272
    		<antcall target="compile-main" inheritAll="false" inheritRefs="true">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   273
          			<param name="build.system" value="${sf.spec.build.system}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   274
          			<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   275
                <param name="sf.spec.sysdef.version" value ="${sf.spec.s60.sysdef.version}"/>                                   
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   276
          			<reference refid="sbs.tools.var" torefid="sbs.var" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   277
          			<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   278
          			<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   279
    		</antcall>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   280
    
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   281
	        <!-- s60 clean main build -->
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   282
    		<antcall target="compile-main" inheritAll="false" inheritRefs="true">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   283
          			<param name="build.system" value="${sf.spec.build.system}" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   284
          			<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
35
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   285
                    <param name="sf.spec.sysdef.version" value="${sf.spec.s60.sysdef.version}"/> 
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   286
          			<reference refid="sbs.main.clean.sbs.var" torefid="sbs.var" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   287
          			<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   288
          			<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   289
    		</antcall>
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   290
			
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   291
    		<!-- s60 main build -->
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   292
    		<antcall target="compile-main" inheritAll="false" inheritRefs="true">
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   293
          			<param name="build.system" value="${sf.spec.build.system}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   294
          			<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" />
9f78d5788229 Apply sbs clean before build. TODO add generic clean target next.
ShabeR@UK-SHABER
parents: 34
diff changeset
   295
                    <param name="sf.spec.sysdef.version" value="${sf.spec.s60.sysdef.version}"/> 
31
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   296
          			<reference refid="sbs.main.sbs.var" torefid="sbs.var" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   297
          			<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   298
          			<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   299
    		</antcall>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   300
    
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   301
    		<!-- s60 postbuild bldmelast using ebs -->
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   302
    		<antcall target="compile-main" inheritAll="false">
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   303
          			<param name="build.system" value="ebs" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   304
          			<param name="sysdef.configurations.list" value="S60_bldmelast" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   305
          			<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" />
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   306
    		</antcall>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   307
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   308
	</target>
c54ae3330cbd Add config changes in order to support s60 and os platform builds
shaberazvi@LON-ENGBUILD88.prod.ad.symbian.intra
parents: 0
diff changeset
   309
  
0
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   310
  <!-- import sf-common-config -->
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   311
  <import file="../common/build.xml" />
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   312
  
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   313
</project>
571f289c60b8 Initial drop of FBF Helium configuration
Dario Sestito <dario.sestito@symbian.com>
parents:
diff changeset
   314