forked from RobertoEstrada/WLANAudit-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
33 lines (28 loc) · 893 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<project name="WLANAudit-parent" default="build-debug">
<property name="build-target" value="android-16" />
<property name="app-home" value="WLANAudit/" />
<property name="tests-home" value="WLANAudit-Tests/" />
<property name="tools-home" value="Tools/" />
<target name="build-debug">
<subant target="debug">
<fileset dir="${app-home}" includes="build.xml"/>
</subant>
</target>
<target name="build-release">
<subant target="release">
<fileset dir="${app-home}" includes="build.xml"/>
</subant>
</target>
<target name="test">
<subant target="test">
<fileset dir="${tests-home}" includes="build.xml"/>
</subant>
</target>
<target name="clean">
<subant target="clean">
<fileset dir="${app-home}" includes="build.xml"/>
<fileset dir="${tests-home}" includes="build.xml"/>
</subant>
</target>
</project>