forked from Kartkod/pattypan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
154 lines (147 loc) · 4.58 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<project default="build" basedir=".">
<target name="build" depends="prepareJavfx, compile, jar, clean"/>
<property name="lib.dir" location="lib" />
<property name="tmp" location="tmp" />
<path id="classpath">
<fileset dir="lib">
<include name="**/*.jar" />
</fileset>
</path>
<target name="prepareJavfx">
<mkdir dir="${tmp}"/>
<unzip dest="${tmp}">
<fileset dir=".">
<include name="openjfx-*_linux-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/javafx.base.jar"/>
<include name="**/javafx.graphics.jar"/>
<include name="**/javafx.controls.jar"/>
<include name="**/javafx.web.jar"/>
</patternset>
<mapper type="flatten"/>
</unzip>
<unzip dest="bin">
<fileset dir="${tmp}">
<include name="javafx.base.jar"/>
<include name="javafx.graphics.jar"/>
<include name="javafx.controls.jar"/>
</fileset>
<patternset>
<exclude name="META-INF/MANIFEST.MF"/>
<exclude name="module-info.class"/>
</patternset>
</unzip>
<unzip dest="bin">
<fileset dir=".">
<include name="openjfx-*_linux-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/libprism*.so"/>
<include name="**/libjavafx*.so"/>
<include name="**/libglass*.so"/>
</patternset>
<mapper type="flatten"/>
</unzip>
<unzip dest="${tmp}">
<fileset dir=".">
<include name="openjfx-*_windows-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/javafx.base.jar"/>
<include name="**/javafx.graphics.jar"/>
<include name="**/javafx.controls.jar"/>
<include name="**/javafx.web.jar"/>
</patternset>
<mapper type="flatten"/>
</unzip>
<unzip dest="bin">
<fileset dir="${tmp}">
<include name="javafx.base.jar"/>
<include name="javafx.graphics.jar"/>
<include name="javafx.controls.jar"/>
</fileset>
<patternset>
<exclude name="META-INF/MANIFEST.MF"/>
<exclude name="module-info.class"/>
</patternset>
</unzip>
<unzip dest="bin">
<fileset dir=".">
<include name="openjfx-*_windows-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/prism*.dll"/>
<include name="**/javafx*.dll"/>
<include name="**/glass.dll"/>
<include name="**/api-ms-win-core-console-l1-1-0.dll"/>
<include name="**/api-ms-win-core-console-l1-2-0.dll"/>
<include name="**/msvcp140.dll"/>
<include name="**/vcruntime140_1.dll"/>
</patternset>
<mapper type="flatten"/>
</unzip>
<unzip dest="${tmp}">
<fileset dir=".">
<include name="openjfx-*_osx-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/javafx.base.jar"/>
<include name="**/javafx.graphics.jar"/>
<include name="**/javafx.controls.jar"/>
<include name="**/javafx.web.jar"/>
</patternset>
<mapper type="flatten"/>
</unzip>
<unzip dest="bin">
<fileset dir="${tmp}">
<include name="javafx.base.jar"/>
<include name="javafx.graphics.jar"/>
<include name="javafx.controls.jar"/>
</fileset>
<patternset>
<exclude name="META-INF/MANIFEST.MF"/>
<exclude name="module-info.class"/>
</patternset>
</unzip>
<unzip dest="bin">
<fileset dir=".">
<include name="openjfx-*_osx-*_bin-sdk.zip"/>
</fileset>
<patternset>
<include name="**/libprism*.dylib"/>
<include name="**/libjavafx*.dylib"/>
<include name="**/libglass.dylib"/>
</patternset>
<mapper type="flatten"/>
</unzip>
</target>
<target name="compile">
<mkdir dir="bin"/>
<javac includeantruntime="false" srcdir="src" destdir="bin">
<classpath refid="classpath" />
<compilerarg line="--module-path ${tmp}"/>
<compilerarg line="--add-modules javafx.web"/>
</javac>
</target>
<target name="jar">
<copy todir="bin/pattypan">
<fileset dir="src/pattypan/" >
<include name="resources/**"/>
<include name="style/**"/>
<include name="text/**"/>
</fileset>
</copy>
<jar destfile="pattypan.jar" basedir="bin" includes="**/*">
<manifest>
<attribute name="Class-Path" value="${lib.dir}"/>
<attribute name="Main-Class" value="pattypan.Launcher"/>
</manifest>
<zipgroupfileset dir="${lib.dir}"/>
</jar>
</target>
<target name="clean">
<delete dir="${tmp}"/>
<delete dir="bin"/>
</target>
</project>