|
Revision 16109, 1.3 kB
(checked in by aronb, 4 years ago)
|
Added a VR Juggler logo to the definition loading dialog.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<project name="jccl_config" default="dist" basedir="."> |
|---|
| 3 |
<property name="srcdir" location="@srcdir@" /> |
|---|
| 4 |
<property name="debug" value="on" /> |
|---|
| 5 |
<property name="optimize" value="off" /> |
|---|
| 6 |
|
|---|
| 7 |
<path id="tweek.classpath"> |
|---|
| 8 |
<pathelement path="@TWEEK_JARS@" /> |
|---|
| 9 |
</path> |
|---|
| 10 |
|
|---|
| 11 |
<!-- Compile all java sources --> |
|---|
| 12 |
<target name="compile"> |
|---|
| 13 |
<javac destdir="." |
|---|
| 14 |
deprecation="on" |
|---|
| 15 |
debug="${debug}" |
|---|
| 16 |
optimize="${optimize}"> |
|---|
| 17 |
<src path="${srcdir}" /> |
|---|
| 18 |
<include name="org/vrjuggler/jccl/config/**"/> |
|---|
| 19 |
<classpath refid="tweek.classpath" /> |
|---|
| 20 |
</javac> |
|---|
| 21 |
</target> |
|---|
| 22 |
|
|---|
| 23 |
<!-- Create the distribution jar --> |
|---|
| 24 |
<target name="dist" depends="compile"> |
|---|
| 25 |
<jar destfile="jccl_config.jar" basedir="."> |
|---|
| 26 |
<include name="org/vrjuggler/jccl/config/**"/> |
|---|
| 27 |
<fileset dir="${srcdir}" includes="org/vrjuggler/jccl/config/xslt/*.xsl" /> |
|---|
| 28 |
<fileset dir="${srcdir}" includes="org/vrjuggler/jccl/config/images/*" /> |
|---|
| 29 |
</jar> |
|---|
| 30 |
</target> |
|---|
| 31 |
|
|---|
| 32 |
<!-- Clean up --> |
|---|
| 33 |
<target name="clean"> |
|---|
| 34 |
<delete failonerror="false"> |
|---|
| 35 |
<fileset dir="org" includes="**/*.class" /> |
|---|
| 36 |
</delete> |
|---|
| 37 |
<delete file="jccl_config.jar" failonerror="false" /> |
|---|
| 38 |
</target> |
|---|
| 39 |
</project> |
|---|