mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2025-09-22 07:03:53 +02:00
KoW for console applications added
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
@echo off
|
||||
|
||||
call "%~dp0..\..\..\Tools\build.bat" "%~dp0SetCursor"
|
||||
copy "%~dp0*.bmp" "%~dp0..\..\..\Bin" >nul
|
||||
if errorlevel 1 goto exit
|
||||
|
||||
call "%~dp0init.bat"
|
||||
|
||||
:exit
|
11
Examples/GUI/SetCursor/init.bat
Normal file
11
Examples/GUI/SetCursor/init.bat
Normal file
@@ -0,0 +1,11 @@
|
||||
@echo off
|
||||
|
||||
for %%f in ("%~dp0*.bmp") do (
|
||||
if not exist "%~dp0..\..\..\Bin\%1\%%~nxf" (
|
||||
echo Copying "%%f"
|
||||
copy "%%f" "%~dp0..\..\..\Bin\%1" >nul
|
||||
if errorlevel 1 goto exit
|
||||
)
|
||||
)
|
||||
|
||||
:exit
|
Reference in New Issue
Block a user