- More work
This commit is contained in:
parent
2e01d0d932
commit
9833edabe5
2 changed files with 17 additions and 0 deletions
4
compileprojectmanager.bat
Normal file
4
compileprojectmanager.bat
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
@echo off
|
||||
cd src\tools\projectmanager
|
||||
call make.bat
|
||||
cd ..\..\..
|
||||
13
src/tools/projectmanager/make.bat
Normal file
13
src/tools/projectmanager/make.bat
Normal 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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue