Initial commit
This commit is contained in:
19
build.sh
Normal file
19
build.sh
Normal file
@ -0,0 +1,19 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
rm -f jadeite.zip
|
||||
rm -rf out
|
||||
|
||||
sh setup.sh
|
||||
ninja -C build
|
||||
|
||||
mkdir out
|
||||
|
||||
cp ./build/injector/jadeite.exe ./out
|
||||
cp ./build/injector/launcher_payload/launcher_payload.dll ./out
|
||||
cp ./build/game_payload/game_payload.dll ./out
|
||||
cp ./LICENSE.txt ./out
|
||||
|
||||
if [ "x$1" = "xrelease" ]; then
|
||||
cd out
|
||||
zip ../jadeite.zip *
|
||||
fi
|
||||
Reference in New Issue
Block a user