mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2024-11-09 17:50:30 +01:00
13 lines
206 B
Batchfile
13 lines
206 B
Batchfile
@echo off
|
|
|
|
for /d %%f in (%~dp0Examples\Console\*) do (
|
|
call %%f\build.bat
|
|
if errorlevel 1 goto exit
|
|
)
|
|
|
|
for /d %%f in (%~dp0Examples\GUI\*) do (
|
|
call %%f\build.bat
|
|
if errorlevel 1 goto exit
|
|
)
|
|
|
|
:exit |