| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <project name="SimpleApp" default="exe" basedir=".">
- <property name="src" location="src" />
- <property name="lib" location="lib" />
- <property name="build" location="build" />
- <property name="launch4j.dir" location="../.." />
- <path id="dist.classpath">
- <pathelement path="${build}" />
- <fileset dir="${lib}">
- <include name="**/*.jar" />
- </fileset>
- </path>
- <target name="init">
- <tstamp />
- <mkdir dir="${build}" />
- </target>
- <target name="compile" depends="init" description="compile the source">
- <javac srcdir="${src}" destdir="${build}" classpathref="dist.classpath" source="1.8" debug="on" includeantruntime="false" />
- </target>
- <target name="jar" depends="compile" description="create the jar">
- <fileset dir="${lib}" id="lib.dist.fileset">
- <include name="**/*.jar" />
- </fileset>
- <pathconvert pathsep=" " property="dist.classpath" refid="lib.dist.fileset">
- <map from="${lib}" to=".\lib" />
- </pathconvert>
- <!-- Put everything in ${build} into a jar file -->
- <jar jarfile="${ant.project.name}.jar">
- <fileset dir="${build}" includes="**/*" />
- <manifest>
- <!-- SET YOUR MAIN CLASS HERE -->
- <attribute name="Main-Class" value="net.sf.launch4j.example.SimpleApp" />
- <attribute name="Class-Path" value=". ${dist.classpath}" />
- </manifest>
- </jar>
- </target>
- <target name="exe" depends="jar">
- <taskdef name="launch4j" classname="net.sf.launch4j.ant.Launch4jTask" classpath="${launch4j.dir}/launch4j.jar
- :${launch4j.dir}/lib/xstream.jar" />
- <launch4j configFile="./l4j/SimpleApp.xml" />
- </target>
- <target name="clean" description="clean up">
- <delete dir="${build}" />
- <delete file="${ant.project.name}.jar" />
- <delete file="${ant.project.name}.exe" />
- </target>
- </project>
|