-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
91 lines (90 loc) · 3.48 KB
/
build.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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- WARNING: Eclipse auto-generated file.
Any modifications will be overwritten.
To include a user specific buildfile here, simply create one in the same
directory with the processing instruction <?eclipse.ant.import?>
as the first entry and export the buildfile again. --><project basedir="." default="build" name="column-store-tbat-java">
<property environment="env"/>
<property name="debuglevel" value="source,lines,vars"/>
<property name="target" value="1.7"/>
<property name="source" value="1.7"/>
<path id="column-store-tbat-java.classpath">
<pathelement location="."/>
</path>
<target name="init">
<copy includeemptydirs="false" todir=".">
<fileset dir=".">
<exclude name="**/*.java"/>
</fileset>
</copy>
</target>
<target name="clean">
<delete>
<fileset dir="." includes="**/*.class"/>
</delete>
</target>
<target depends="clean" name="cleanall"/>
<target depends="build-subprojects,build-project" name="build"/>
<target name="build-subprojects"/>
<target depends="init" name="build-project">
<echo message="${ant.project.name}: ${ant.file}"/>
<javac debug="true" debuglevel="${debuglevel}" destdir="." includeantruntime="false" source="${source}" target="${target}">
<src path="."/>
<classpath refid="column-store-tbat-java.classpath"/>
</javac>
</target>
<target name="test_para_sum1">
<java classname="test1.test_para_sum1" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
</project>
<!--
<target description="Build all projects which reference this project. Useful to propagate changes." name="build-refprojects"/>
<target name="exp_update">
<java classname="exp_update.exp_update" failonerror="true" fork="yes">
<arg line="1000 10 0.1 0.2 0.3 0.4 0.5"/>
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test2">
<java classname="test1.test2" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_create_bat_tbat1">
<java classname="test1.test_create_bat_tbat1" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_create_update_list">
<java classname="test1.test_create_update_list" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_loop">
<java classname="test1.test_loop" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_print">
<java classname="test1.test_print" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_update_bat1">
<java classname="test1.test_update_bat1" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_update_bat2">
<java classname="test1.test_update_bat2" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
<target name="test_update_tbat">
<java classname="test1.test_update_tbat" failonerror="true" fork="yes">
<classpath refid="column-store-tbat-java.classpath"/>
</java>
</target>
-->