Files
cappuccino/Tools/Install/build.xml
T
Francisco Ryan Tolmasky I a97bb72800 Initial commit.
Reviewed by francisco, ross and tom.
2008-09-04 03:52:20 -07:00

39 lines
1.1 KiB
XML

<?xml version = "1.0"?>
<project name = "Install">
<import file = "../../common.xml" />
<property name = "Build.Products" location = "${Build}/Install.build/${Configuration}" />
<property name = "Build.Install" location = "${Build}/${Configuration}" />
<target name = "clean">
<delete dir = "${Build.Products}" verbose = "true" />
</target>
<target name = "build">
<mkdir dir = "${Build.Products}" />
<copy file = "${basedir}/install-tools" tofile = "${Build.Products}/install-tools" />
</target>
<target name = "release" depends = "build">
<mkdir dir = "${Build.Install}" />
<antcall target = "prepare-release" />
<copy file = "${Build.Products}/install-tools" tofile = "${Build.Cappuccino.Tools.Objects}/install-tools" />
<chmod file = "${Build.Cappuccino.Tools.Objects}/install-tools" perm = "+x" />
<copy todir = "${Build.Cappuccino.Tools.Objects}/Jars">
<fileset dir = "${basedir}/../Jars" />
</copy>
</target>
</project>