automation/product_builder/carbide.c/config/customTargets.xml
author cawthron
Thu, 27 Aug 2009 09:35:10 -0500
branchRCL_2_1
changeset 461 721b44b79a7b
parent 383 c7f424dea615
permissions -rw-r--r--
print java.home
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
383
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     1
<project name="Build specific targets and properties" default="noDefault">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     2
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     3
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     4
	<!-- Run a given ${target} on all elements being built -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     5
	<!-- Add on <ant> task for each top level element being built. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     6
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     7
	<available property="allElementsFile" file="${builder}/allElements.xml" value="${builder}/allElements.xml"/>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     8
	<property name="allElementsFile" location="${eclipse.pdebuild.templates}/headless-build/allElements.xml"/>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
     9
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    10
	<import file="${allElementsFile}" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    11
	<target name="allElements">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    12
		<antcall target="allElementsDelegator" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    13
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    14
	
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    15
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    16
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    17
	<target name="getBaseComponents" depends="checkLocalBase" unless="skipBase">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    18
		<get src="${eclipseBaseURL}" dest="${buildDirectory}/../temp-base.zip" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    19
		<unzip dest="${base}" overwrite="true" src="${buildDirectory}/../temp-base.zip" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    20
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    21
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    22
	<target name="checkLocalBase">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    23
		<available file="${base}" property="skipBase" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    24
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    25
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    26
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    27
	<!-- Check out map files from correct repository -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    28
	<!-- Replace values for mapsCheckoutTag as desired. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    29
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    30
	<target name="getMapFiles" depends="checkLocalMaps" unless="skipMaps">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    31
		<property name="mapsCheckoutTag" value="HEAD" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    32
		<cvs cvsRoot="${mapsRepo}" package="${mapsRoot}" dest="${buildDirectory}/maps" tag="${mapsCheckoutTag}" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    33
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    34
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    35
	<target name="checkLocalMaps">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    36
		<available property="skipMaps" file="${buildDirectory}/maps" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    37
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    38
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    39
	<target name="tagMapFiles" if="tagMaps">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    40
		<cvs dest="${buildDirectory}/maps/${mapsRoot}" command="tag ${mapsTagTag}" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    41
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    42
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    43
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    44
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    45
	<target name="clean" unless="noclean">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    46
		<antcall target="allElements">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    47
			<param name="target" value="cleanElement" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    48
		</antcall>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    49
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    50
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    51
	<target name="gatherLogs">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    52
		<mkdir dir="${buildDirectory}/${buildLabel}/compilelogs" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    53
		<antcall target="allElements">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    54
			<param name="target" value="gatherLogs" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    55
		</antcall>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    56
		<unzip dest="${buildDirectory}/${buildLabel}/compilelogs" overwrite="true">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    57
			<fileset dir="${buildDirectory}/features">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    58
				<include name="**/*.log.zip" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    59
			</fileset>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    60
		</unzip>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    61
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    62
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    63
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    64
	<!-- Steps to do before setup -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    65
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    66
	<target name="preSetup">
461
721b44b79a7b print java.home
cawthron
parents: 383
diff changeset
    67
        <echo message="java.home is ${java.home}" />
383
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    68
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    69
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    70
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    71
	<!-- Steps to do after setup but before starting the build proper -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    72
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    73
	<target name="postSetup">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    74
		<antcall target="getBaseComponents" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    75
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    76
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    77
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    78
	<!-- Steps to do before fetching the build elements -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    79
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    80
	<target name="preFetch">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    81
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    82
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    83
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    84
	<!-- Steps to do after fetching the build elements -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    85
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    86
	<target name="postFetch">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    87
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    88
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    89
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    90
	<!-- Steps to do before generating the build scripts. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    91
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    92
	<target name="preGenerate">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    93
        <antcall target="buildAPIdocumentation" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    94
		<antcall target="addBuildNumber" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    95
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    96
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    97
    <target name="buildAPIdocumentation">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    98
		<ant antfile="buildDoc.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.sdk.doc.user/" target="all" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
    99
    </target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   100
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   101
	<target name="addBuildNumber" if="buildNumber">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   102
        <replace dir="${buildDirectory}/plugins" value="${buildNumber}" token="@buildNumber@">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   103
            <include name="com.nokia.carbide.cpp/about.mappings" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   104
        </replace>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   105
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   106
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   107
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   108
	<!-- Steps to do after generating the build scripts. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   109
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   110
	<target name="postGenerate">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   111
		<antcall target="clean" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   112
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   113
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   114
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   115
	<!-- Steps to do before running the build.xmls for the elements being built. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   116
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   117
	<target name="preProcess">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   118
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   119
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   120
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   121
	<!-- Steps to do after running the build.xmls for the elements being built. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   122
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   123
	<target name="postProcess">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   124
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   125
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   126
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   127
	<!-- Steps to do before running assemble. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   128
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   129
	<target name="preAssemble">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   130
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.capabilityScanner" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   131
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.compiler.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   132
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.codescanner" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   133
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.sdk.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   134
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.uiq.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   135
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.pi.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   136
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.debug.crashdebugger" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   137
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.uidesigner.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   138
        <ant antfile="build_index.xml" dir="${buildDirectory}/plugins/com.nokia.carbide.cpp.doc.user" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   139
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   140
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   141
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   142
	<!-- Steps to do after  running assemble. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   143
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   144
	<target name="postAssemble">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   145
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   146
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   147
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   148
	<!-- Steps to do before running package. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   149
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   150
	<target name="prePackage">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   151
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   152
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   153
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   154
	<!-- Steps to do after  running package. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   155
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   156
	<target name="postPackage">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   157
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   158
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   159
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   160
	<!-- Steps to do after the build is done. -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   161
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   162
	<target name="postBuild">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   163
		<antcall target="gatherLogs" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   164
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   165
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   166
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   167
	<!-- Steps to do to test the build results -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   168
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   169
	<target name="test">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   170
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   171
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   172
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   173
	<!-- Steps to do to publish the build results -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   174
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   175
	<target name="publish">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   176
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   177
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   178
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   179
	<!-- Default target                                                        -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   180
	<!-- ===================================================================== -->
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   181
	<target name="noDefault">
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   182
		<echo message="You must specify a target when invoking this file" />
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   183
	</target>
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   184
c7f424dea615 add Symbian Foundation build scripts
cawthron
parents:
diff changeset
   185
</project>