1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-05-12 12:00:13 +00:00
QB64-PE/.ci/compile.bat
Roland Heyder 39a35626c1 Step 9: Update GitHub Actions
- rename build artifact names and distribution archive names
- this step completes file name related changes (based on extension, more may come based on "qb64" string)
2022-08-11 23:04:07 +02:00

16 lines
381 B
Batchfile

@ECHO OFF
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
qb64pe_bootstrap.exe -x -w source\qb64pe.bas
IF ERRORLEVEL 1 exit /b 1
del qb64pe_bootstrap.exe
del /q /s internal\source\*
move internal\temp\* internal\source\
REM Build libqb test executables
internal\c\c_compiler\bin\mingw32-make.exe -j8 OS=win build-tests
internal\c\c_compiler\bin\mingw32-make.exe OS=win clean