-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.con.xml
44 lines (44 loc) · 1.87 KB
/
build.con.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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="build" name="simresCON">
<property environment="env"/>
<property name="JSTools.location" value="./JSTools"/>
<property name="simresCON.location" value="./simresCON"/>
<property file="./build.properties"/>
<path id="simresCON.classpath">
<pathelement location="${JSTools.location}/bin"/>
<pathelement location="${simresCON.location}/bin"/>
</path>
<target name="init">
<mkdir dir="${simresCON.location}/bin"/>
<copy includeemptydirs="false" todir="${simresCON.location}/bin">
<fileset dir="${simresCON.location}/src">
<include name="Jama/"/>
<include name="cz/"/>
<exclude name="**/*.java"/>
<exclude name="obsolete/"/>
</fileset>
</copy>
</target>
<target name="clean">
<delete dir="${simresCON.location}/bin"/>
</target>
<target depends="clean" name="cleanall">
<ant antfile="build.jstools.xml" inheritAll="false" target="clean"/>
</target>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects">
<ant antfile="build.jstools.xml" inheritAll="false" target="build"/>
</target>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<echo message="javac options: ${javac_options}"/>
<javac encoding="UTF-8" debug="true" debuglevel="${debuglevel}" destdir="${simresCON.location}/bin" includeantruntime="false" release="${release}">
<src path="${simresCON.location}/src"/>
<compilerarg line="${javac_options}" />
<include name="Jama/"/>
<include name="cz/"/>
<exclude name="obsolete/"/>
<classpath refid="simresCON.classpath"/>
</javac>
</target>
</project>