Add build.sh install.sh run.sh

This commit is contained in:
Cametendo
2025-12-01 11:42:13 +01:00
parent 9d037b5a5b
commit 34ffa886c1
3 changed files with 45 additions and 0 deletions

13
scripts/build.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
VERSION="2.13.1"
echo "start building..."
set -e
mkdir -p out
javac -cp "lib/gson-${VERSION}.jar" -d out $(find Cards-Gate/src -name "*.java")
echo "build finished"