mirror of
https://github.com/nerzhul/nrz-androidlib.git
synced 2025-06-08 00:16:12 +00:00
Create ant build.xml
This commit is contained in:
parent
5fc213ff5a
commit
536fe8c6e6
15
build.xml
Normal file
15
build.xml
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<property name="dist.dir" value="dist" />
|
||||||
|
|
||||||
|
<target name="dist" depends="compile">
|
||||||
|
<jar destfile="${dist.dir}/nrz-androidlib.jar" basedir="${build.dir}" />
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="init">
|
||||||
|
<mkdir dir="${build.dir}" />
|
||||||
|
<mkdir dir="${dist.dir}" />
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="clean">
|
||||||
|
<delete dir="${build.dir}" />
|
||||||
|
<delete dir="${dist.dir}" />
|
||||||
|
</target>
|
Loading…
x
Reference in New Issue
Block a user