home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Format Collection 48
/
SENT14D.ISO
/
tech
/
delphi
/
disk15
/
experts.pak
/
BUILD.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1995-08-24
|
247 b
|
18 lines
REM Build the demo Application and Dialog Expert
@echo off
REM Build strings.res
brcc strings.rc
if errorlevel 1 goto Fail
REM Build the DLL
dcc exptdemo.dpr
if errorlevel 1 goto Fail
goto Exit
:Fail
echo Build failed.
:Exit