mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
17 lines
434 B
Batchfile
17 lines
434 B
Batchfile
@echo off
|
|
|
|
rem
|
|
rem This wrapper is for Delphi msbuild calls only. It sets up the msbuild environment
|
|
rem for Delphi, which is not compatible with the VS msbuild environment.
|
|
rem
|
|
rem Do not use this for VS builds.
|
|
rem
|
|
|
|
SET DCC32PATH=%1
|
|
shift
|
|
|
|
if not exist %DCC32PATH%\rsvars.bat echo Batch file %DCC32PATH%\rsvars.bat does not exist && exit /b 1
|
|
|
|
call %DCC32PATH%\rsvars.bat
|
|
msbuild.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
|
|
exit /b %errorlevel%
|