1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-04 04:50:22 +00:00
QB64-PE/.ci/compile.bat

16 lines
381 B
Batchfile
Raw Normal View History

2020-01-08 09:33:09 +00:00
@ECHO OFF
2020-01-08 08:35:38 +00:00
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
qb64pe_bootstrap.exe -x -w source\qb64pe.bas
2020-01-08 08:35:38 +00:00
IF ERRORLEVEL 1 exit /b 1
del qb64pe_bootstrap.exe
del /q /s internal\source\*
move internal\temp\* internal\source\
2022-06-08 04:23:13 +00:00
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
2022-06-08 04:23:13 +00:00