Build scripts moved to Tools subdirectory

This commit is contained in:
Владислав Джавадов 2020-06-28 21:32:30 +03:00
parent 7f456bc7ea
commit 6eabb2141b
23 changed files with 22 additions and 22 deletions

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0CharMap" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0CharMap"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0ConsoleColors" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0ConsoleColors"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0DateTime" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0DateTime"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0Echo" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0Echo"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0GetCurrentDir" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0GetCurrentDir"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0Hello" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0Hello"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0LoadFile" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0LoadFile"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0ReadFolder" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0ReadFolder"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0ColorButtons" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0ColorButtons"

View File

@ -1,3 +1,3 @@
@echo off @echo off
call "%~dp0..\..\..\Lib\build.bat" "%~dp0DrawImage" call "%~dp0..\..\..\Tools\build.bat" "%~dp0DrawImage"
copy "%~dp0*.tga" "%~dp0..\..\..\Bin" >nul copy "%~dp0*.tga" "%~dp0..\..\..\Bin" >nul

View File

@ -1,3 +1,3 @@
@echo off @echo off
call "%~dp0..\..\..\Lib\build.bat" "%~dp0DrawImageEx" call "%~dp0..\..\..\Tools\build.bat" "%~dp0DrawImageEx"
copy "%~dp0*.bmp" "%~dp0..\..\..\Bin" >nul copy "%~dp0*.bmp" "%~dp0..\..\..\Bin" >nul

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0DrawText" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0DrawText"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0GetPixel" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0GetPixel"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0GetPointOwner" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0GetPointOwner"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0HelloGUI" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0HelloGUI"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0Screenshot" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0Screenshot"

View File

@ -1,3 +1,3 @@
@echo off @echo off
call "%~dp0..\..\..\Lib\build.bat" "%~dp0SetCursor" call "%~dp0..\..\..\Tools\build.bat" "%~dp0SetCursor"
copy "%~dp0*.bmp" "%~dp0..\..\..\Bin" >nul copy "%~dp0*.bmp" "%~dp0..\..\..\Bin" >nul

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0SetPixel" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0SetPixel"

View File

@ -1 +1 @@
@call "%~dp0..\..\..\Lib\build.bat" "%~dp0SetWindowPos" @call "%~dp0..\..\..\Tools\build.bat" "%~dp0SetWindowPos"

View File

@ -1 +1 @@
@call "%~dp0..\..\Lib\build.bat" "%~dp0MyConsole" @call "%~dp0..\..\Tools\build.bat" "%~dp0MyConsole"

View File

@ -1 +1 @@
@call "%~dp0..\..\Lib\build.bat" "%~dp0MyGUI" @call "%~dp0..\..\Tools\build.bat" "%~dp0MyGUI"

View File

@ -19,7 +19,7 @@ if not exist "%~dp0..\RTL\SysInit.dcu" call "%~dp0..\build-RTL.bat"
if errorlevel 1 goto exit if errorlevel 1 goto exit
if not exist "%Bin%\convert.bat" ( if not exist "%Bin%\convert.bat" (
echo @%%~dp0..\Lib\convert.bat %%* >"%Bin%\convert.bat" echo @%%~dp0..\Tools\convert.bat %%* >"%Bin%\convert.bat"
if errorlevel 1 goto exit if errorlevel 1 goto exit
) )