home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / full / delphi / RUNIMAGE / DELPHI30 / DEMOS / EXPERTS / BUILD.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-08-04  |  373 b   |  21 lines

  1. REM Build the demo Application and Dialog Expert
  2. REM To use this batch file you must have the Delphi 3 Bin directory on your path.
  3. @echo off
  4.  
  5. REM Build strings.res
  6. brcc32 strings.rc
  7. if errorlevel 1 goto Fail
  8.  
  9. REM Build the DLL
  10. dcc32 exptdemo
  11. if errorlevel 1 goto Fail
  12. dcc32 projexpl
  13. if errorlevel 1 goto Fail
  14.  
  15. goto Exit
  16.  
  17. :Fail
  18. echo Build failed.
  19.  
  20. :Exit
  21.