1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

The new automated build system heavily endowed

with ant and xsl.
This commit is contained in:
Doug Schaefer 2003-09-02 03:11:35 +00:00
parent 4e69ae69d5
commit 82d1ef95c0

View file

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<project name="CDT Build Bootstrap" default="main">
<property name="build.version" value="1.2.0"/>
<property name="build.server" value="update.eclipse.org"/>
<property name="build.remotedir" value="/home/www/tools/cdt/updates/builds/1.2"/>
<!--property name="build.userid" value="userid on server"/-->
<!--property name="build.password" value="password on server"/-->
<target name="bootstrap">
<xslt in="manifest.xml" out="main.xml" style="main.xsl"/>
</target>
<target name="main" depends="bootstrap">
<ant antfile="main.xml"/>
</target>
<target name="build" depends="bootstrap">
<ant antfile="main.xml" target="build"/>
</target>
<target name="upload" depends="bootstrap">
<ant antfile="main.xml" target="upload"/>
</target>
</project>