2008-04-23 06:44:22 +00:00
|
|
|
<?xml version="1.0" ?>
|
|
|
|
<project name="OpenSim" default="build">
|
2008-04-23 07:00:07 +00:00
|
|
|
<target name="build">
|
|
|
|
<exec program="mono" commandline="bin/Prebuild.exe /target nant" />
|
|
|
|
<nant buildfile="OpenSim.build" target="build" />
|
|
|
|
</target>
|
2008-04-23 06:44:22 +00:00
|
|
|
<target name="cibuild">
|
2008-04-23 07:11:10 +00:00
|
|
|
<property name="projectdir" value="opensim-0.5.5" />
|
2008-04-23 06:44:22 +00:00
|
|
|
<exec program="mono" commandline="bin/Prebuild.exe /target nant" />
|
|
|
|
<nant buildfile="OpenSim.build" target="build" />
|
|
|
|
<nant buildfile="OpenSim.build" target="dist" />
|
2008-04-23 07:00:07 +00:00
|
|
|
<copy file="${projectdir}.zip" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.zip" overwrite="true" />
|
|
|
|
<copy file="${projectdir}.tar.gz" tofile="/home/buildsystem/public_html/${projectdir}-TRUNK.tar.gz" overwrite="true" />
|
2008-04-23 06:44:22 +00:00
|
|
|
</target>
|
|
|
|
</project>
|