-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.xml
37 lines (30 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model
href="/usr/share/php5/PEAR/data/phing/etc/phing-grammar.rng"
type="application/xml"
schematypens="http://relaxng.org/ns/structure/1.0" ?>
<project name="tbro" default="dummy-notarget">
<if>
<not>
<available file="./build.properties"/>
</not>
<then>
<fail message="Property file build.properties does not exist. Please copy build.properties.example and modify it to your needs." />
</then>
</if>
<property file="./build.properties" />
<import file="./src/queue/build-queue.xml"/>
<import file="./src/cli/build-cli-db.xml"/>
<import file="./src/cli/build-cli-import.xml"/>
<import file="./src/cli/build-cli-tools.xml"/>
<target name="cli-install" depends="cli-db-install,cli-import-install,cli-tools-install" description="install cli tools to bin_dir">
</target>
<import file="./src/web/build-web.xml"/>
<import file="./src/database/build-database.xml"/>
<target name="dummy-notarget">
<fail message="Please call phing with a target. To see all available targets, call 'phing -l'" />
</target>
<target name="clean">
<delete dir="${builddir}" includeemptydirs="true" verbose="true" failonerror="true" />
</target>
</project>