forked from swordcube-archives/FNF-Plasma-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_debug.sh
executable file
·28 lines (28 loc) · 1.16 KB
/
build_debug.sh
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
#!/bin/bash
echo 'Running "lime test linux -debug -dce no"'
echo "When it asks you to setup the command for lime, type y!"
echo 'And make sure to remove openfl 9.2.0 when this is done via "haxelib remove openfl 9.2.0"'
read -p "Do you want to install libraries? (y/n) " yn
case $yn in
[yY] ) echo "Installing libraries";
haxelib install lime;
haxelib install openfl;
haxelib install flixel;
haxelib run lime setup flixel;
haxelib run lime setup;
haxelib install flixel-tools;
haxelib run flixel-tools setup;
haxelib git hscript-improved https://github.com/YoshiCrafter29/hscript-improved;
haxelib git flixel-addons https://github.com/HaxeFlixel/flixel-addons;
haxelib git flixel-ui https://github.com/HaxeFlixel/flixel-ui;
haxelib git discord_rpc https://github.com/Aidan63/linc_discord-rpc;
haxelib git openfl https://github.com/openfl/openfl;
haxelib git hxCodec https://github.com/swordcube/hxCodec-testing;
lime test linux -debug -dce no;
exit;;
[nN] ) echo "Building";
lime test linux -debug -dce no;
exit;;
* ) echo invalid response;
exit;;
esac