blob: 308b084bfb7f49d1eaff6f28153b2dfb1e20168d [file] [log] [blame]
<project name="allElements Delegator">
<!--
/***********************************************************************************************************************
* Copyright (c) 2008 empolis GmbH and brox IT Solutions GmbH. All rights reserved. This program and the accompanying
* materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Ralf Rausch (brox IT Solutions GmbH) - initial creator
**********************************************************************************************************************/
-->
<!-- ===================================================================== -->
<!-- Run a given ${target} on all elements being built -->
<!-- Replace element.id with the id of the top level element being built. -->
<!-- If element.id does not exist in ${buildDirectory}/features/element.id -->
<!-- or ${baseLocation}/features/element.id, then you must provide the -->
<!-- location by setting the property "pluginPath" -->
<!-- Add on <ant> task for each top level element being built. -->
<!-- ===================================================================== -->
<target name="allElementsDelegator">
<ant antfile="${genericTargets}" target="${target}">
<property name="type" value="feature" />
<property name="id" value="org.eclipse.smila.test.feature" />
</ant>
</target>
<!-- ===================================================================== -->
<!-- Targets to assemble the built elements for particular configurations -->
<!-- These generally call the generated assemble scripts (named in -->
<!-- ${assembleScriptName}) but may also add pre and post processing -->
<!-- Add one target for each root element and each configuration -->
<!-- Replace element.id with the id of the top level element being built -->
<!-- ===================================================================== -->
<target name="assemble.org.eclipse.smila.test.feature.win32.win32.x86">
<ant antfile="${assembleScriptName}" dir="${buildDirectory}" />
</target>
<target name="assemble.org.eclipse.smila.test.feature.win32.win32.x86_64">
<ant antfile="${assembleScriptName}" dir="${buildDirectory}" />
</target>
<target name="assemble.org.eclipse.smila.test.feature.linux.gtk.x86">
<ant antfile="${assembleScriptName}" dir="${buildDirectory}" />
</target>
<target name="assemble.org.eclipse.smila.test.feature.linux.gtk.x86_64">
<ant antfile="${assembleScriptName}" dir="${buildDirectory}" />
</target>
<target name="assemble.org.eclipse.smila.test.feature.macosx.cocoa.x86_64">
<!-- ant antfile="${assembleScriptName}" dir="${buildDirectory}" / -->
</target>
<target name="assemble.org.eclipse.smila.test.feature.solaris.gtk.sparc">
<ant antfile="${assembleScriptName}" dir="${buildDirectory}" />
</target>
</project>