blob: ffe43b08ad7ec93432d8e2d4bd7feb40e9051e79 [file] [log] [blame]
<project default="main">
<property name="pde.build.scripts" value="${build.home}/${eclipse.builder}/plugins/org.eclipse.pde.build_3.1.0/scripts" />
<target name="main">
<touch file="${user.home}/.cvspass" />
<!--fetch the HEAD stream of all projects if build type specified as N-->
<condition property="fetchTag" value="HEAD">
<equals arg1="${buildType}" arg2="N" />
</condition>
<property name="fetchTag" value="" />
<!--this property required as of Eclipse 3.0 stream builds > 20031126 -->
<property name="buildingOSGi" value="true" />
<!--run the build for the specified component-->
<echo message="basedir: ${basedir}"/>
<echo message="component: ${component}"/>
<echo message="buildDirectory: ${buildDirectory}"/>
<ant antfile="build.xml" dir="${pde.build.scripts}" >
<property name="builder" value="${basedir}/${component}" />
<property name="relengDir" value="${basedir}" />
</ant>
</target>
</project>