home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 1999 February
/
DPPCPRO0299.ISO
/
February
/
Delphi
/
Runimage
/
DELPHI20
/
DEMOS
/
EXPERTS
/
BUILD.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1996-06-10
|
336 b
|
22 lines
REM Build the demo Application and Dialog Expert
@echo off
REM Build strings.res
brcc32 strings.rc
if errorlevel 1 goto Fail
brcc32 prjexpl.rc
if errorlevel 1 goto Fail
REM Build the DLL
dcc32 exptdemo
if errorlevel 1 goto Fail
dcc32 projexpl
if errorlevel 1 goto Fail
goto Exit
:Fail
echo Build failed.
:Exit