| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @echo off
- rem Inno Setup
- rem Copyright (C) 1997-2025 Jordan Russell
- rem Portions by Martijn Laan
- rem For conditions of distribution and use, see LICENSE.TXT.
- rem
- rem Batch file to get GetIt dependencies
- setlocal
- cd /d %~dp0
- if exist compilesettings.bat goto compilesettingsfound
- :compilesettingserror
- echo compilesettings.bat is missing or incomplete. It needs to contain
- echo the following line, adjusted for your system:
- echo.
- echo set DELPHIXEROOT=C:\Program Files\Embarcadero\RAD Studio\20.0 [Path to Delphi 10.4 Sydney (or later)]
- goto failed2
- :compilesettingsfound
- set DELPHIXEROOT=
- call .\compilesettings.bat
- if "%DELPHIXEROOT%"=="" goto compilesettingserror
- rem -------------------------------------------------------------------------
- call "%DELPHIXEROOT%\bin\rsvars.bat"
- if errorlevel 1 goto failed
- rem Delphi 10.4 note: Delphi 10.4 does not display these styles when using the
- rem GetIt Package Manager from the IDE, but its GetItCmd.exe can still retrieve
- rem them. When it does, it obtains the same files as Delphi 12.3.
- GetItCmd.exe --accepteulas --donotsetenvfile -i=VCLStyle-Windows11Light-1.0;VCLStyle-Windows11Dark-1.0;VCLStyle-PolarLight-1.0;VCLStyle-PolarDark-1.0;VCLStyle-Zircon-2.0
- if errorlevel 1 goto failed
- echo Success!
- goto exit
- :failed
- echo *** FAILED ***
- :failed2
- exit /b 1
- :exit
|