mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-26 21:47:04 +00:00
28 lines
654 B
XML
28 lines
654 B
XML
<?xml version = "1.0"?>
|
|
<project name = "Objective-J" default = "build" >
|
|
|
|
<import file = "../common.xml" />
|
|
|
|
<filelist id = "Projects" dir = ".">
|
|
<file name = "Runtime/build.xml" />
|
|
<file name = "Tools/build.xml" />
|
|
</filelist>
|
|
|
|
<target name = "build">
|
|
<iterate target = "build">
|
|
<files>
|
|
<filelist refid = "Projects" />
|
|
</files>
|
|
</iterate>
|
|
</target>
|
|
|
|
<target name = "clean">
|
|
<iterate target = "clean">
|
|
<files>
|
|
<filelist refid = "Projects" />
|
|
</files>
|
|
</iterate>
|
|
</target>
|
|
|
|
</project>
|