forked from ianharrigan/haxeui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhaxeui.bat
56 lines (40 loc) · 1.04 KB
/
haxeui.bat
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
@echo OFF
IF "%~1"=="" GOTO install
IF "%~1"=="bundle" GOTO bundle
IF "%~1"=="build" GOTO build
IF "%~1"=="install" GOTO install
IF "%~1"=="submit" GOTO submit
:bundle
echo Bundling HaxeUI
neko haxebundler.n bundle -openfl
neko haxebundler.n bundle -haxelib
GOTO end
:build
echo Bundling HaxeUI
neko haxebundler.n bundle -openfl
neko haxebundler.n bundle -haxelib
echo Building HaxeUI haxelib
del bin\haxeui.zip
7za a bin\haxeui.zip haxelib.json include.xml assets haxe
GOTO end
:install
echo Bundling HaxeUI
neko haxebundler.n bundle -openfl
neko haxebundler.n bundle -haxelib
echo Installing HaxeUI haxelib
del bin\haxeui.zip
7za a bin\haxeui.zip haxelib.json include.xml assets haxe
haxelib local bin\haxeui.zip
GOTO end
:submit
echo Bundling HaxeUI
neko haxebundler.n bundle -openfl
neko haxebundler.n bundle -haxelib
echo Submitting HaxeUI haxelib
del bin\haxeui.zip
7za a bin\haxeui.zip haxelib.json include.xml assets haxe
haxelib local bin\haxeui.zip
haxelib submit bin\haxeui.zip
GOTO end
:end
echo Complete