-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_topfloat_Sat_Nov_23_20-50-57_CST_2013.xml
86 lines (68 loc) · 3.58 KB
/
module_topfloat_Sat_Nov_23_20-50-57_CST_2013.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_topfloat" default="compile.module.topfloat">
<dirname property="module.topfloat.basedir" file="${ant.file.module_topfloat}"/>
<property name="module.jdk.home.topfloat" value="${jdk.home.android_sdk}"/>
<property name="module.jdk.bin.topfloat" value="${jdk.bin.android_sdk}"/>
<property name="module.jdk.classpath.topfloat" value="jdk.classpath.android_sdk"/>
<property name="compiler.args.topfloat" value="${compiler.args}"/>
<property name="topfloat.output.dir" value="${module.topfloat.basedir}/../../Android_workspace-eclipse2/MM/out/production/TopFloat"/>
<property name="topfloat.testoutput.dir" value="${module.topfloat.basedir}/../../Android_workspace-eclipse2/MM/out/test/TopFloat"/>
<path id="topfloat.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="topfloat.module.production.classpath">
<path refid="${module.jdk.classpath.topfloat}"/>
</path>
<path id="topfloat.runtime.production.module.classpath">
<pathelement location="${topfloat.output.dir}"/>
</path>
<path id="topfloat.module.classpath">
<path refid="${module.jdk.classpath.topfloat}"/>
<pathelement location="${topfloat.output.dir}"/>
</path>
<path id="topfloat.runtime.module.classpath">
<pathelement location="${topfloat.testoutput.dir}"/>
<pathelement location="${topfloat.output.dir}"/>
</path>
<patternset id="excluded.from.module.topfloat">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.topfloat">
<patternset refid="compiler.excluded"/>
<patternset refid="excluded.from.module.topfloat"/>
</patternset>
<path id="topfloat.module.sourcepath">
<dirset dir="${module.topfloat.basedir}">
<include name="gen"/>
<include name="src"/>
</dirset>
</path>
<target name="compile.module.topfloat" depends="compile.module.topfloat.production,compile.module.topfloat.tests" description="Compile module TopFloat"/>
<target name="compile.module.topfloat.production" depends="register.custom.compilers" description="Compile module TopFloat; production classes">
<mkdir dir="${topfloat.output.dir}"/>
<javac2 destdir="${topfloat.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.topfloat}/javac">
<compilerarg line="${compiler.args.topfloat}"/>
<bootclasspath refid="topfloat.module.bootclasspath"/>
<classpath refid="topfloat.module.production.classpath"/>
<src refid="topfloat.module.sourcepath"/>
<patternset refid="excluded.from.compilation.topfloat"/>
</javac2>
<copy todir="${topfloat.output.dir}">
<fileset dir="${module.topfloat.basedir}/gen">
<patternset refid="compiler.resources"/>
<type type="file"/>
<patternset refid="excluded.from.compilation.topfloat"/>
</fileset>
<fileset dir="${module.topfloat.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
<patternset refid="excluded.from.compilation.topfloat"/>
</fileset>
</copy>
</target>
<target name="compile.module.topfloat.tests" depends="register.custom.compilers,compile.module.topfloat.production" description="compile module TopFloat; test classes" unless="skip.tests"/>
<target name="clean.module.topfloat" description="cleanup module">
<delete dir="${topfloat.output.dir}"/>
<delete dir="${topfloat.testoutput.dir}"/>
</target>
</project>