forked from bmcdorman/CBCDownloader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
51 lines (45 loc) · 1.56 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
<project name="CBCDownloader" default="dist" basedir=".">
<description>
A set of cross-platform Java utilities and libraries for communicating
with the CBC
</description>
<!-- set global properties for this build -->
<property name="lib" location="lib"/>
<property name="src" location="src"/>
<property name="bin" location="bin"/>
<property name="docs" location="docs/api"/>
<target name="init">
<tstamp/>
<mkdir dir="${bin}"/>
<!--mkdir dir="${docs}"/-->
</target>
<target name="compile" depends="init"
description="compile the source">
<javac srcdir="${lib}" destdir="${bin}"/>
<javac srcdir="${src}" destdir="${bin}"/>
</target>
<!-- We need library documentation soon
<target name="document">
<javadoc packagenames="cbccore.*"
sourcepath="src"
excludepackagenames="cbccore.low.simulator.*"
destdir="${docs}"
author="true"
version="true"
use="true"
windowtitle="CBCJVM API - JavaDoc">
<doctitle><![CDATA[<h1>CBCJVM API</h1>]]></doctitle>
<bottom><![CDATA[<i>Copyright © 2010 Benjamin Woodruff, Braden Mcdorman, and anyone else who is cited at an author. GPLv3 Licensed.<p>Fork us on <a href = "http://github.com/catron/CBCJVM">github</a>!</i>]]></bottom>
<tag name=".todo" scope="all" description="To Do:"/>
</javadoc>
</target>
-->
<target name="dist" depends="compile"
description="generate the distribution" >
</target>
<target name="clean"
description="clean up" >
<delete dir="${bin}"/>
<delete dir="${docs}"/>
</target>
</project>