Add jvm search, java download support (thanks KiteeLauncher), build and install script.

This commit is contained in:
2026-06-06 17:18:25 +08:00
parent 3d80fab562
commit 79a97cfd06
4 changed files with 97 additions and 20 deletions
+11
View File
@@ -0,0 +1,11 @@
echo "Checking environment..."
if command -v nuitka &> /dev/null; then
echo "Nuitka installed"
else
echo "Nuitka not installed. Install it via \"uv pip install nuitka\" !" >&2
fi
nuitka --onefile --standalone --output-filename=serverjar main.py --output-filename=serverjar
nuitka --onefile --standalone --output-filename=sarclent client.py --output-filename=sarclient
echo "Done."