forked from javafxports/openjdk-jfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
28 lines (20 loc) · 838 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
<?xml version="1.0" encoding="UTF-8"?>
<project default="appsJar" basedir=".">
<!--
Note: this build.xml will be pulled into the
Gradle namespace, so lets use long names...
-->
<target name="appsJar">
<ant dir="samples" target="jar" inheritAll="true"/>
<ant dir="performance" target="jar" inheritAll="true"/>
<ant dir="toys" target="jar" inheritAll="true"/>
<ant dir="tests" target="jar" inheritAll="true"/>
</target>
<target name="appsClean">
<ant dir="samples" target="clean" inheritAll="true"/>
<ant dir="performance" target="clean" inheritAll="true"/>
<ant dir="toys" target="clean" inheritAll="true"/>
<ant dir="tests" target="clean" inheritAll="true"/>
</target>
<target name="clean" depends="appsClean"/>
</project>