forked from CoderLine/alphaTab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
227 lines (176 loc) · 6.99 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<project name="alphaTab" default="js" basedir=".">
<description>
a buildfile compiling alphaTab
</description>
<property name="release" location="releases"/>
<property name="tools" location="tools"/>
<!--*************************************************************************
General
**************************************************************************-->
<!-- Main Properties -->
<property name="bin" location="bin"/>
<property name="src" location="src"/>
<property name="test" location="test"/>
<property name="api" location="api"/>
<property name="release" location="releases"/>
<!--*************************************************************************
Building Docs
**************************************************************************-->
<!-- Haxe Builds -->
<target name="api">
<delete file="${api}" />
<mkdir dir="${api}" />
<!-- Build XMLs -->
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-main" />
<arg value="alphatab.Main" />
<arg value="-js" />
<arg value="${api}/all.js" />
<arg value="-xml" />
<arg value="${api}/js.xml" />
</exec>
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-main" />
<arg value="alphatab.Main" />
<arg value="-cs" />
<arg value="${api}/all.cs" />
<arg value="-xml" />
<arg value="${api}/cs.xml" />
<arg value="-D" />
<arg value="no-compilation" />
</exec>
<delete file="${api}/all.js" />
<delete dir="${api}/all.cs" />
<exec executable="haxelib" failonerror="true">
<arg value="run" />
<arg value="dox"/>
<arg value="-r" />
<arg value="/" />
<arg value="-o" />
<arg value="${api}/pages" />
<arg value="-i" />
<arg value="${api}" />
<arg value="-ex" />
<arg value=".*" />
<arg value="-in" />
<arg value="alphatab.*" />
</exec>
</target>
<!--*************************************************************************
Building All
**************************************************************************-->
<target name="all" depends="js-minify,cs">
</target>
<!--*************************************************************************
Building JavaScript
**************************************************************************-->
<property name="bin-js" location="${bin}/js"/>
<property name="lib-js" location="${bin-js}/lib/alphaTab"/>
<property name="haxe-js" location="${lib-js}/alphaTab.core.js"/>
<property name="haxe-js-min" location="${lib-js}/alphaTab.core.min.js"/>
<condition property="uglify" value="uglifyjs.cmd" else="uglifyjs">
<os family="windows" />
</condition>
<target name="minify">
<echo message="Minifying ${file}" />
<exec executable="${uglify}" failonerror="true">
<arg value="${file}" />
<arg value="-o" />
<arg value="${file-min}" />
<arg value="-c" />
</exec>
</target>
<!-- Haxe Builds -->
<target name="js">
<delete file="${haxe-js}" quiet="true" />
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-D" />
<arg value="js-classic" />
<arg value="-main" />
<arg value="alphatab.Main" />
<arg value="-js" />
<arg value="${haxe-js}" />
</exec>
</target>
<target name="js-minify" depends="js">
<!-- Minimize JavaScripts -->
<antcall target="minify">
<param name="file" value="${haxe-js}" />
<param name="file-min" value="${haxe-js-min}" />
</antcall>
<antcall target="minify">
<param name="file" value="${lib-js}/jquery.alphaTab.js" />
<param name="file-min" value="${lib-js}/jquery.alphaTab.min.js" />
</antcall>
</target>
<!--*************************************************************************
Building C#
**************************************************************************-->
<property name="haxe-cs" location="${bin}/cs/"/>
<property name="haxe-cs-core" location="${haxe-cs}/AlphaTab.Core"/>
<!-- Haxe Builds -->
<target name="cs">
<mkdir dir="${haxe-cs}" />
<delete dir="${haxe-cs-core}/src" quiet="true" />
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-D" />
<arg value="real-position" />
<arg value="-D" />
<arg value="no-compilation" />
<arg value="-D" />
<arg value="no-root" />
<arg value="-main" />
<arg value="alphatab.Main" />
<arg value="-cs" />
<arg value="${haxe-cs-core}" />
</exec>
</target>
<!--*************************************************************************
UnitTests
**************************************************************************-->
<property name="unit-tests-neko" location="${bin}/test/tests.n"/>
<target name="test-neko">
<delete file="${unit-tests-neko}" quiet="true" />
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-cp" />
<arg value="${test}"/>
<arg value="-D" />
<arg value="unit" />
<arg value="-main" />
<arg value="alphatab.AlphaTestRunner" />
<arg value="-neko" />
<arg value="${unit-tests-neko}" />
</exec>
<exec executable="neko" failonerror="true">
<arg value="${unit-tests-neko}" />
<arg value="${bin}/test/test-files" />
</exec>
<delete file="${unit-tests-neko}" />
</target>
<property name="unit-tests-js" location="${bin}/test/tests.js"/>
<target name="test-js">
<delete file="${unit-tests-js}" quiet="true" />
<exec executable="haxe" failonerror="true">
<arg value="-cp" />
<arg value="${src}"/>
<arg value="-cp" />
<arg value="${test}"/>
<arg value="-D" />
<arg value="unit" />
<arg value="-main" />
<arg value="alphatab.AlphaTestRunner" />
<arg value="-js" />
<arg value="${unit-tests-js}" />
</exec>
</target>
</project>