| 1234567891011121314151617181920212223242526272829303132333435 |
- @echo off
- set DelphiProd=Delphi 2010
- if exist SetEnv.bat del SetEnv.bat
- if not exist computil.exe goto NoComputil
- computil SetupD14
- if defined NDD14 goto RSVARS
- if not exist SetEnv.bat goto NoNDD
- call SetEnv.bat > nul:
- if not defined NDD14 goto NoNDD
- :RSVARS
- call "%NDD14%bin\rsvars.bat"
- if not defined BDS goto NoBDS
- set logfn=CleanD14.log
- call Clean_IDE.cmd
- goto END
- :NoCompUtil
- echo Computil.exe not found--run this batch script from the "Lib" folder of the Indy repository, recently pulled from GitHub.
- goto END
- :NoNDD
- echo Computil.exe did not create the batch script for setting up the environment for %DelphiProd%. Aborting.
- goto END
- :NoBDS
- echo Calling RSVars did not set up the environment for %DelphiProd%. Aborting.
- :END
- set logfn=
- set DelphiProd=
|