summaryrefslogtreecommitdiff
path: root/qadevOOo/build.xml
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-24 16:16:52 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-24 16:16:52 +0000
commitc8b64cf1ed96039141a06f041c737b696478c2e7 (patch)
treed824514b5d097af578a906aedb36a42f84c1d5bd /qadevOOo/build.xml
parent6b1fecf4489107f3376fc85f51e8217ee97d4158 (diff)
INTEGRATION: CWS qadev21 (1.1.2); FILE ADDED
2005/02/22 13:52:34 sg 1.1.2.2: #i43312#CHG: removed unnecessary mkdir 2005/02/22 11:38:12 sg 1.1.2.1: ##i43312#NEW: initial version
Diffstat (limited to 'qadevOOo/build.xml')
-rwxr-xr-xqadevOOo/build.xml44
1 files changed, 44 insertions, 0 deletions
diff --git a/qadevOOo/build.xml b/qadevOOo/build.xml
new file mode 100755
index 000000000000..5441bd9368ed
--- /dev/null
+++ b/qadevOOo/build.xml
@@ -0,0 +1,44 @@
+<project name="qadevOOo" default="main" basedir=".">
+ <description>
+ Build file for qadevOOo project
+ </description>
+
+ <!-- set global properties for this build -->
+ <property name="qadevOOo.output" location="${out}"/>
+ <property name="qadevOOo.class" location="${qadevOOo.output}/class"/>
+ <property name="qadevOOo.runner" location="${prj}/runner"/>
+ <property name="qadevOOo.tests" location="${prj}/tests/java"/>
+ <property name="qadevOOo.office_jars" location="${solar.jar}"/>
+
+ <!-- ================================================================================== -->
+
+ <!-- the main target -->
+ <target name="main" depends="qadevOOo_tests_build,qadevOOo_runner_build"/>
+
+ <!-- ================================================================================== -->
+
+ <!-- target for building the runner -->
+ <target name="qadevOOo_runner_build">
+ <javac srcdir="${qadevOOo.runner}" destdir="${qadevOOo.class}" includes="**/*.java">
+ <classpath>
+ <pathelement location="${qadevOOo.class}"/>
+ <fileset dir="${qadevOOo.office_jars}">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ </javac>
+ </target>
+
+ <!-- target for building the tests -->
+ <target name="qadevOOo_tests_build" depends="qadevOOo_runner_build">
+ <javac srcdir="${qadevOOo.tests}" destdir="${qadevOOo.class}" includes="**/*.java">
+ <classpath>
+ <pathelement location="${qadevOOo.class}"/>
+ <fileset dir="${qadevOOo.office_jars}">
+ <include name="**/*.jar"/>
+ </fileset>
+ </classpath>
+ </javac>
+ </target>
+
+</project>