forked from weissjeffm/webui-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (21 loc) · 719 Bytes
/
build.xml
File metadata and controls
29 lines (21 loc) · 719 Bytes
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
<project name="Framework" default="compile" basedir=".">
<!--
<property name="framework.build.dir" location="output/classes" />
-->
<property name="framework.src.dir" location="src" />
<property name="framework.lib.dir" location="lib" />
<property name="framework.build.dir" location="bin" />
<path id="lib.cp">
<fileset dir="${framework.lib.dir}">
<include name="*.jar" />
</fileset>
</path>
<target name="compile">
<echo message="Compiling webui-framework..." />
<mkdir dir="${framework.build.dir}" />
<javac srcdir="${framework.src.dir}" destdir="${framework.build.dir}"
classpathref="lib.cp" debug="on" >
<compilerarg value="-Xlint"/>
</javac>
</target>
</project>