PKGBUILDs/extra/swt/build-swt.xml
Thomas Laroche eb5c19eec9 Add extra/swt
Changes from upstream : removed download choice based on architecture, this is always recompiled from source
2014-06-12 15:44:33 +02:00

18 lines
472 B
XML

<project name="SWT" default="jar" basedir=".">
<property name="src" location="."/>
<property name="build" location="build"/>
<target name="init">
<tstamp/>
<mkdir dir="${build}"/>
</target>
<target name="compile" depends="init" description="Compile the SWT toolset">
<javac srcdir="${src}" destdir="${build}" target="1.6" />
</target>
<target name="jar">
<jar destfile="swt.jar" basedir="${build}"/>
</target>
</project>