Created launcher to manage the config

This commit is contained in:
Nixietab 2026-07-04 10:54:15 -03:00
parent 2cf9a9756a
commit 98af2b4034
7 changed files with 630 additions and 0 deletions

9
Launcher/build.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$SCRIPT_DIR"
python3 gen_icon.py
x86_64-w64-mingw32-windres resource.rc -O coff -o resource.o
x86_64-w64-mingw32-g++ -mwindows -O2 -s -o EOSHoloLauncher.exe main.cpp resource.o -static
echo "Built: EOSHoloLauncher.exe"