- More work

This commit is contained in:
Benjamin Rosseaux 2018-08-10 08:17:51 +02:00
commit 9833edabe5
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,4 @@
@echo off
cd src\tools\projectmanager
call make.bat
cd ..\..\..

View file

@ -0,0 +1,13 @@
@echo off
where /q dcc32
if errorlevel 1 (
where /q fpc
if errorlevel 1 (
echo Error: Neither the Delphi compiler nor the FreePascal compiler was found
exit /B
) else (
call makefpc.bat
)
) else (
call makedelphi.bat
)