Skip to content

Commit c093aee

Browse files
committed
Updated to RAD Studio 10.1 Berlin
1 parent dd1a2bd commit c093aee

11 files changed

+821
-45
lines changed

Build_x64Debug.bat

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
BRCC32 VersionInfo.rc
2-
call "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\rsvars.bat"
2+
call "C:\Program Files (x86)\Embarcadero\Studio\18.0\bin\rsvars.bat"
33
msbuild.exe "DelphiDevShellTools.dproj" /target:Clean;Build /p:Platform=Win64 /p:config=debug
44
set BUILD_STATUS=%ERRORLEVEL%
5-
if %BUILD_STATUS%==0 GOTO GUI
5+
if %BUILD_STATUS%==0 GOTO Updater
66
pause
77
EXIT
88

9+
:Updater
10+
msbuild.exe Updater\Updater.dproj /target:Clean;Build /p:Platform=Win32 /p:config=release
11+
set BUILD_STATUS=%ERRORLEVEL%
12+
if %BUILD_STATUS%==0 GOTO GUI
13+
914
:GUI
1015
msbuild.exe GUI\GUIDelphiDevShell.dproj /target:Clean;Build /p:Platform=Win32 /p:config=release
1116
copy GUI\GUIDelphiDevShell.exe Win64\Debug\GUIDelphiDevShell.exe

Build_x64Release.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BRCC32 VersionInfo.rc
2-
call "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\rsvars.bat"
2+
call "C:\Program Files (x86)\Embarcadero\Studio\18.0\bin\rsvars.bat"
33
msbuild.exe "DelphiDevShellTools.dproj" /target:clean;build /p:Platform=Win64 /p:config=release
44
pause

Build_x86Debug.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BRCC32 VersionInfo.rc
2-
call "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\rsvars.bat"
2+
call "C:\Program Files (x86)\Embarcadero\Studio\18.0\bin\rsvars.bat"
33
msbuild.exe "DelphiDevShellTools.dproj" /target:Clean;Build /p:Platform=Win32 /p:config=debug
44
pause

Build_x86Release.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
BRCC32 VersionInfo.rc
2-
call "C:\Program Files (x86)\Embarcadero\RAD Studio\11.0\bin\rsvars.bat"
2+
call "C:\Program Files (x86)\Embarcadero\Studio\18.0\bin\rsvars.bat"
33
msbuild.exe "DelphiDevShellTools.dproj" /target:clean;build /p:Platform=Win32 /p:config=release
44
pause

DelphiDevShellTools.dpr

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@ library DelphiDevShellTools;
33
uses
44
{.$IFDEF MADEXCEPTS}
55
{$IFDEF DEBUG}
6-
madExcept,
7-
madLinkDisAsm,
8-
madListHardware,
9-
madListProcesses,
10-
madListModules,
116
{$ENDIF DEBUG}
127
{.$ENDIF MADEXCEPTS}
138
System.Win.ComServ,

DelphiDevShellTools.dproj

Lines changed: 379 additions & 21 deletions
Large diffs are not rendered by default.

DelphiDevShellTools.res

772 Bytes
Binary file not shown.

DelphiDevShellTools.tlb

0 Bytes
Binary file not shown.

GUI/GUIDelphiDevShell.dproj

Lines changed: 432 additions & 14 deletions
Large diffs are not rendered by default.

GUI/GUIDelphiDevShell.res

836 Bytes
Binary file not shown.

Updater/Updater.res

740 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)