Files
2026-03-16 10:49:17 +01:00

10 lines
225 B
Batchfile

@echo off
echo Building TinyLoad...
g++ -o TinyLoad.exe TinyLoad.cpp -static -O2 -s
if %errorlevel% equ 0 (
echo Build successful!.
) else (
echo Build failed. Make sure you have MinGW g++ installed.
)
pause