From e3daca37aa134a6885c8ae5c508c3d7f7bfc600a Mon Sep 17 00:00:00 2001 From: skal Date: Sat, 31 Jan 2026 13:57:51 +0100 Subject: Add Windows cross-compilation support (MinGW) and emulation (Wine) --- scripts/run_win.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 scripts/run_win.sh (limited to 'scripts/run_win.sh') diff --git a/scripts/run_win.sh b/scripts/run_win.sh new file mode 100755 index 0000000..853a985 --- /dev/null +++ b/scripts/run_win.sh @@ -0,0 +1,9 @@ +#!/bin/bash +if [ ! -f build_win/demo64k.exe ]; then + echo "Error: build_win/demo64k.exe not found. Run scripts/build_win.sh first." + exit 1 +fi + +echo "Running with Wine..." +# Wine might output a lot of debug info, but for now we let it flow. +wine build_win/demo64k.exe "$@" -- cgit v1.2.3