forked from SRA-SiliconValley/jalangi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jalangijava.xml
151 lines (120 loc) · 5.33 KB
/
jalangijava.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?xml version="1.0" encoding="UTF-8"?>
<project name="jalangijava" default="all">
<property file="jalangijava.properties"/>
<!-- Uncomment the following property if no tests compilation is needed -->
<!--
<property name="skip.tests" value="true"/>
-->
<!-- Compiler options -->
<property name="compiler.debug" value="on"/>
<property name="compiler.generate.no.warnings" value="off"/>
<property name="compiler.args" value=""/>
<property name="compiler.max.memory" value="128m"/>
<patternset id="ignored.files">
<exclude name="**/CVS/**"/>
<exclude name="**/SCCS/**"/>
<exclude name="**/RCS/**"/>
<exclude name="**/rcs/**"/>
<exclude name="**/.DS_Store/**"/>
<exclude name="**/.svn/**"/>
<exclude name="**/.pyc/**"/>
<exclude name="**/.pyo/**"/>
<exclude name="**/*.pyc/**"/>
<exclude name="**/*.pyo/**"/>
<exclude name="**/.git/**"/>
<exclude name="**/*.hprof/**"/>
<exclude name="**/_svn/**"/>
<exclude name="**/.hg/**"/>
<exclude name="**/*.lib/**"/>
<exclude name="**/*~/**"/>
<exclude name="**/__pycache__/**"/>
<exclude name="**/.bundle/**"/>
<exclude name="**/*.rbc/**"/>
</patternset>
<patternset id="library.patterns">
<include name="*.zip"/>
<include name="*.apk"/>
<include name="*.war"/>
<include name="*.egg"/>
<include name="*.ear"/>
<include name="*.ane"/>
<include name="*.swc"/>
<include name="*.jar"/>
</patternset>
<patternset id="compiler.resources">
<include name="**/?*.properties"/>
<include name="**/?*.xml"/>
<include name="**/?*.gif"/>
<include name="**/?*.png"/>
<include name="**/?*.jpeg"/>
<include name="**/?*.jpg"/>
<include name="**/?*.html"/>
<include name="**/?*.dtd"/>
<include name="**/?*.tld"/>
<include name="**/?*.ftl"/>
</patternset>
<!-- Modules -->
<!-- Module jalangijava -->
<dirname property="module.jalangijava.basedir" file="${ant.file}"/>
<property name="compiler.args.jalangijava" value="${compiler.args}"/>
<property name="jalangijava.output.dir" value="${module.jalangijava.basedir}/jout/production/jalangijava"/>
<property name="jalangijava.testoutput.dir" value="${module.jalangijava.basedir}/jout/test/jalangijava"/>
<path id="jalangijava.module.bootclasspath">
<!-- Paths to be included in compilation bootclasspath -->
</path>
<path id="jalangijava.module.production.classpath">
<pathelement location="${basedir}/thirdparty/javalib/automaton.jar"/>
</path>
<path id="jalangijava.runtime.production.module.classpath">
<pathelement location="${jalangijava.output.dir}"/>
<pathelement location="${basedir}/thirdpart/javalib/automaton.jar"/>
</path>
<path id="jalangijava.module.classpath">
<pathelement location="${jalangijava.output.dir}"/>
<pathelement location="${basedir}/thirdpart/javalib/automaton.jar"/>
</path>
<path id="jalangijava.runtime.module.classpath">
<pathelement location="${jalangijava.testoutput.dir}"/>
<pathelement location="${jalangijava.output.dir}"/>
<pathelement location="${basedir}/thirdparty/javalib/automaton.jar"/>
</path>
<patternset id="excluded.from.module.jalangijava">
<patternset refid="ignored.files"/>
</patternset>
<patternset id="excluded.from.compilation.jalangijava">
<patternset refid="excluded.from.module.jalangijava"/>
</patternset>
<path id="jalangijava.module.sourcepath">
<dirset dir="${module.jalangijava.basedir}">
<include name="src/java"/>
</dirset>
</path>
<target name="compile.module.jalangijava" depends="compile.module.jalangijava.production,compile.module.jalangijava.tests" description="Compile module jalangijava"/>
<target name="compile.module.jalangijava.production" description="Compile module jalangijava; production classes">
<mkdir dir="${jalangijava.output.dir}"/>
<javac destdir="${jalangijava.output.dir}" debug="${compiler.debug}" nowarn="${compiler.generate.no.warnings}" memorymaximumsize="${compiler.max.memory}" fork="true">
<compilerarg line="${compiler.args.jalangijava}"/>
<bootclasspath refid="jalangijava.module.bootclasspath"/>
<classpath refid="jalangijava.module.production.classpath"/>
<src refid="jalangijava.module.sourcepath"/>
<patternset refid="excluded.from.compilation.jalangijava"/>
</javac>
<copy todir="${jalangijava.output.dir}">
<fileset dir="${module.jalangijava.basedir}/src/java">
<patternset refid="compiler.resources"/>
<type type="file"/>
</fileset>
</copy>
</target>
<target name="compile.module.jalangijava.tests" depends="compile.module.jalangijava.production" description="compile module jalangijava; test classes" unless="skip.tests"/>
<target name="clean.module.jalangijava" description="cleanup module">
<delete dir="${jalangijava.output.dir}"/>
<delete dir="${jalangijava.testoutput.dir}"/>
</target>
<target name="init" description="Build initialization">
<!-- Perform any build initialization in this target -->
</target>
<target name="clean" depends="clean.module.jalangijava" description="cleanup all"/>
<target name="build.modules" depends="init, clean, compile.module.jalangijava" description="build all modules"/>
<target name="all" depends="build.modules" description="build all"/>
</project>