home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / EXPERTS / BUILD.BAT < prev    next >
DOS Batch File  |  1998-06-16  |  371b  |  21 lines

  1. REM Build the demo Application and Dialog Expert
  2. REM To use this batch file you must have the Delphi 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.