forked from icode/DocViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule_docviewerflex.xml
More file actions
92 lines (74 loc) · 4.12 KB
/
module_docviewerflex.xml
File metadata and controls
92 lines (74 loc) · 4.12 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="module_docviewerflex" default="compile.module.docviewerflex">
<dirname property="module.docviewerflex.basedir" file="${ant.file.module_docviewerflex}"/>
<property name="module.jdk.home.docviewerflex" value="${jdk.home.flex_sdk_4.5.1.21328_(player_10.2)}"/>
<property name="module.jdk.bin.docviewerflex" value="${jdk.bin.flex_sdk_4.5.1.21328_(player_10.2)}"/>
<property name="module.jdk.classpath.docviewerflex" value="jdk.classpath.flex_sdk_4.5.1.21328_(player_10.2)"/>
<property name="compiler.args.docviewerflex" value="${compiler.args}"/>
<property name="docviewerflex.output.dir" value="docviewerflex.backup/../out/production/docviewerflex"/>
<property name="docviewerflex.testoutput.dir" value="docviewerflex.backup/../out/test/docviewerflex"/>
<path id="docviewerflex.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="docviewerflex.module.production.classpath">
<path refid="${module.jdk.classpath.docviewerflex}"/>
<pathelement location="${basedir}/docviewerflex/lib/FlexPaper_Resources.swc"/>
</path>
<path id="docviewerflex.runtime.production.module.classpath">
<pathelement location="${docviewerflex.output.dir}"/>
<pathelement location="${basedir}/docviewerflex/lib/FlexPaper_Resources.swc"/>
</path>
<path id="docviewerflex.module.classpath">
<path refid="${module.jdk.classpath.docviewerflex}"/>
<pathelement location="${docviewerflex.output.dir}"/>
<pathelement location="${basedir}/docviewerflex/lib/FlexPaper_Resources.swc"/>
</path>
<path id="docviewerflex.runtime.module.classpath">
<pathelement location="${docviewerflex.testoutput.dir}"/>
<pathelement location="${docviewerflex.output.dir}"/>
<pathelement location="${basedir}/docviewerflex/lib/FlexPaper_Resources.swc"/>
</path>
<patternset id="excluded.from.module.docviewerflex">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.docviewerflex">
<patternset refid="excluded.from.module.docviewerflex"/>
</patternset>
<path id="docviewerflex.module.sourcepath">
<dirset dir="docviewerflex.backup">
<include name="src"/>
<include name="lib"/>
<include name="locale"/>
</dirset>
</path>
<target name="compile.module.docviewerflex" depends="compile.module.docviewerflex.production,compile.module.docviewerflex.tests" description="Compile module docviewerflex"/>
<target name="compile.module.docviewerflex.production" depends="register.custom.compilers" description="Compile module docviewerflex; production classes">
<mkdir dir="${docviewerflex.output.dir}"/>
<javac2 destdir="${docviewerflex.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true" executable="${module.jdk.bin.docviewerflex}/javac">
<compilerarg line="${compiler.args.docviewerflex}"/>
<bootclasspath refid="docviewerflex.module.bootclasspath"/>
<classpath refid="docviewerflex.module.production.classpath"/>
<src refid="docviewerflex.module.sourcepath"/>
<patternset refid="excluded.from.compilation.docviewerflex"/>
</javac2>
<copy todir="${docviewerflex.output.dir}">
<fileset dir="docviewerflex.backup/src">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
<fileset dir="docviewerflex.backup/lib">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
<fileset dir="docviewerflex.backup/locale">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.docviewerflex.tests" depends="register.custom.compilers,compile.module.docviewerflex.production" description="compile module docviewerflex; test classes" unless="skip.tests"/>
<target name="clean.module.docviewerflex" description="cleanup module">
<delete dir="${docviewerflex.output.dir}"/>
<delete dir="${docviewerflex.testoutput.dir}"/>
</target>
</project>