You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
476 B

<project name="swidgets" default="jar" basedir=".">
<property file="build.properties"/>
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
<mkdir dir="${dest}"/>
</target>
<target name="compile" depends="init">
<javac classpath="${classpath}" srcdir="${src}" destdir="${build}"/>
</target>
<target name="jar" depends="compile">
<jar destfile="${dest}/swidgets-${version}.jar" basedir="${build}"/>
</target>
</project>