forked from cappuccino/cappuccino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
49 lines (40 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
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version = "1.0"?>
<project name = "Cappuccino" default = "build">
<import file = "common.xml" />
<filelist id = "Projects" dir = ".">
<file name = "Objective-J/build.xml" />
<file name = "Foundation/build.xml" />
<file name = "AppKit/build.xml" />
<file name = "Tools/build.xml" />
</filelist>
<target name = "clean">
<iterate-build target = "clean"/>
<delete dir = "${Build.Cappuccino}" verbose = "true" />
</target>
<target name = "build">
<iterate target = "build">
<files>
<filelist refid = "Projects" />
</files>
</iterate>
</target>
<target name = "release">
<iterate target = "release">
<files>
<filelist refid = "Projects" />
</files>
</iterate>
</target>
<target name = "tools">
<iterate target = "release">
<files>
<filelist dir = ".">
<file name = "Objective-J/build.xml" />
<file name = "Tools/objjc/build.xml" />
<file name = "Tools/steam/build.xml" />
<file name = "Tools/Install/build.xml" />
</filelist>
</files>
</iterate>
</target>
</project>