forked from subgraph/Vega
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
35 lines (29 loc) · 1002 Bytes
/
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
<?xml version="1.0"?>
<project name="vega.build" default="all">
<property name="buildpack.version" value="06222011" />
<import file="build/ant/setup-targets.xml" />
<import file="build/ant/buildpack-targets.xml" />
<import file="build/ant/pde-build-targets.xml" />
<import file="build/ant/unpack-targets.xml" />
<target name="one">
<property name="build.one" value="true" />
<antcall target="dobuild" />
</target>
<target name="dobuild">
<antcall target="buildpack-setup" />
<antcall target="clean" />
<antcall target="setup" />
<antcall target="pde-build" />
<antcall target="unpack-archive" />
</target>
<target name="all">
<property name="build.all" value="true" />
<antcall target="dobuild" />
</target>
<target name="dist">
<property name="build.all" value="true" />
<antcall target="dobuild" />
<exec executable="build/dist-tools/osx/osx-dist.sh"></exec>
<exec executable="build/dist-tools/nsis/windows-dist.sh"></exec>
</target>
</project>