File: build.xml

package info (click to toggle)
openjfx 11.0.2%2B1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 259,996 kB
  • sloc: cpp: 1,553,792; java: 770,301; ansic: 577,227; xml: 78,166; perl: 19,857; objc: 17,740; python: 11,421; ruby: 10,137; asm: 7,588; sh: 3,470; makefile: 3,023; yacc: 405
file content (45 lines) | stat: -rw-r--r-- 1,529 bytes parent folder | download | duplicates (4)
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
<?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="sampleAppsJar">
        <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="sampleAppsClean">
        <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="scenebuilderSampleAppsJar">
        <ant dir="scenebuilder" target="jar-sb-samples" inheritAll="true"/>
    </target>

    <target name="scenebuilderSampleAppsClean">
        <ant dir="scenebuilder" target="clean-sb-samples" inheritAll="true"/>
    </target>

    <target name="scenebuilderAppJar">
        <ant dir="scenebuilder" target="jar-sb" inheritAll="true"/>
    </target>

    <target name="scenebuilderAppClean">
        <ant dir="scenebuilder" target="clean-sb" inheritAll="true"/>
    </target>

    <target name="appsJar" depends="sampleAppsJar,scenebuilderAppJar,scenebuilderSampleAppsJar"/>

    <target name="clean" depends="sampleAppsClean,scenebuilderAppClean,scenebuilderSampleAppsClean"/>

</project>