This repository has been archived by the owner on Feb 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module_bestkorea.xml
98 lines (80 loc) · 4.19 KB
/
module_bestkorea.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
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_bestkorea" default="compile.module.bestkorea">
<dirname property="module.bestkorea.basedir" file="${ant.file.module_bestkorea}"/>
<property name="module.jdk.home.bestkorea" value="${project.jdk.home}"/>
<property name="module.jdk.bin.bestkorea" value="${project.jdk.bin}"/>
<property name="module.jdk.classpath.bestkorea" value="${project.jdk.classpath}"/>
<property name="compiler.args.bestkorea" value="-encoding UTF-8 -source 8 ${compiler.args}"/>
<property name="bestkorea.output.dir" value="${module.bestkorea.basedir}/out/production/BestKorea"/>
<property name="bestkorea.testoutput.dir" value="${module.bestkorea.basedir}/out/test/BestKorea"/>
<path id="bestkorea.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="bestkorea.module.production.classpath">
<path refid="${module.jdk.classpath.bestkorea}"/>
<path refid="library.kotlinjavaruntime.classpath"/>
<path refid="library.dbus-java-bin-2.7.classpath"/>
<path refid="library.unix.classpath"/>
<path refid="library.hexdump-0.2.classpath"/>
<path refid="library.java-ddp-client.classpath"/>
</path>
<path id="bestkorea.runtime.production.module.classpath">
<pathelement location="${bestkorea.output.dir}"/>
<path refid="library.kotlinjavaruntime.classpath"/>
<path refid="library.dbus-java-bin-2.7.classpath"/>
<path refid="library.unix.classpath"/>
<path refid="library.hexdump-0.2.classpath"/>
<path refid="library.java-ddp-client.classpath"/>
</path>
<path id="bestkorea.module.classpath">
<path refid="${module.jdk.classpath.bestkorea}"/>
<pathelement location="${bestkorea.output.dir}"/>
<path refid="library.kotlinjavaruntime.classpath"/>
<path refid="library.dbus-java-bin-2.7.classpath"/>
<path refid="library.unix.classpath"/>
<path refid="library.hexdump-0.2.classpath"/>
<path refid="library.java-ddp-client.classpath"/>
</path>
<path id="bestkorea.runtime.module.classpath">
<pathelement location="${bestkorea.testoutput.dir}"/>
<pathelement location="${bestkorea.output.dir}"/>
<path refid="library.kotlinjavaruntime.classpath"/>
<path refid="library.dbus-java-bin-2.7.classpath"/>
<path refid="library.unix.classpath"/>
<path refid="library.hexdump-0.2.classpath"/>
<path refid="library.java-ddp-client.classpath"/>
</path>
<patternset id="excluded.from.module.bestkorea">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.bestkorea">
<patternset refid="excluded.from.module.bestkorea"/>
</patternset>
<path id="bestkorea.module.sourcepath">
<dirset dir="${module.bestkorea.basedir}">
<include name="src"/>
</dirset>
</path>
<target name="compile.module.bestkorea" depends="compile.module.bestkorea.production,compile.module.bestkorea.tests" description="Compile module BestKorea"/>
<target name="compile.module.bestkorea.production" description="Compile module BestKorea; production classes">
<mkdir dir="${bestkorea.output.dir}"/>
<javac destdir="${bestkorea.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.bestkorea}/javac">
<compilerarg line="${compiler.args.bestkorea}"/>
<bootclasspath refid="bestkorea.module.bootclasspath"/>
<classpath refid="bestkorea.module.production.classpath"/>
<src refid="bestkorea.module.sourcepath"/>
<patternset refid="excluded.from.compilation.bestkorea"/>
</javac>
<copy todir="${bestkorea.output.dir}">
<fileset dir="${module.bestkorea.basedir}/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.bestkorea.tests" depends="compile.module.bestkorea.production" description="compile module BestKorea; test classes" unless="skip.tests"/>
<target name="clean.module.bestkorea" description="cleanup module">
<delete dir="${bestkorea.output.dir}"/>
<delete dir="${bestkorea.testoutput.dir}"/>
</target>
</project>