Mars/build.xml
Mat Booth ae685d7602 Fix class not found exceptions at startup, rhbz#828973
- Also update to latest upstream
- Write a real build script to create the jar
2013-06-24 17:39:44 +01:00

15 lines
446 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="Mars" basedir="." default="all">
<target name="all">
<mkdir dir="build"/>
<javac destdir="build" includeantruntime="false" debug="true" encoding="windows-1252">
<src path="."/>
</javac>
<copy todir="build">
<fileset dir="." includes="*.properties,*.txt,docs/**,help/**,images/**"/>
</copy>
<jar destfile="Mars.jar">
<fileset dir="build"/>
</jar>
</target>
</project>