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
458 B
18 lines
458 B
<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>
|
|
|
|
<target name="jar">
|
|
<jar destfile="swt.jar" basedir="${build}"/>
|
|
</target>
|
|
</project>
|