mirror of
https://github.com/iamsopotatoe-coder/TinyLoad
synced 2026-06-21 13:53:33 +00:00
12 lines
255 B
Batchfile
12 lines
255 B
Batchfile
@echo off
|
|
echo TinyLoad v7.1
|
|
echo ------------
|
|
echo Building...
|
|
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
|