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:
parent
4e69ae69d5
commit
82d1ef95c0
1 changed files with 26 additions and 0 deletions
26
releng/org.eclipse.cdt.releng/build.xml
Normal file
26
releng/org.eclipse.cdt.releng/build.xml
Normal 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>
|
Loading…
Add table
Reference in a new issue