forked from PureMVC/puremvc-haxe-multicore-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.hxml
47 lines (41 loc) · 1.36 KB
/
build.hxml
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
# PureMVC haXe Port by Marco Secchi <[email protected]>
# PureMVC - Copyright(c) 2006-08 Futurescale, Inc., Some rights reserved.
# Your reuse is governed by the Creative Commons Attribution 3.0 License
# build flash9 library
-cp src
-swf bin/PureMVC_Haxe_MC_1_2_fl9.swf
-swf-version 9
org.puremvc.haxe.multicore.ImportAll
# build flash8 library
--next
-cp src
-swf bin/PureMVC_Haxe_MC_1_2_fl8.swf
-swf-version 8
org.puremvc.haxe.multicore.ImportAll
# build flash7 library
--next
-cp src
-swf bin/PureMVC_Haxe_MC_1_2_fl7.swf
-swf-version 7
org.puremvc.haxe.multicore.ImportAll
# build flash6 library
--next
-cp src
-swf bin/PureMVC_Haxe_MC_1_2_fl6.swf
-swf-version 6
org.puremvc.haxe.multicore.ImportAll
# build javascript library
--next
-cp src
-js bin/PureMVC_Haxe_MC_1_2_js.js
org.puremvc.haxe.multicore.ImportAll
# build docs
# use the following command-line action to generate docs:
# haxedoc puremvc_docs.xml -f Array -f Bool -f org -f Class -f Dynamic -f Enum -f float -f Hash -f Int -f Iter -f List -f Math -f Null -f Reflect -f Std -f String -f Type -f Void -f Value
--next
-cp src
-neko docs/all.n
-xml docs/puremvc_docs.xml
org.puremvc.haxe.multicore.ImportAll
-cmd cd docs
-cmd haxedoc puremvc_docs.xml -f Array -f Bool -f org -f Class -f Dynamic -f Enum -f float -f Hash -f Int -f Iter -f List -f Math -f Null -f Reflect -f Std -f String -f Type -f Void -f Value