[svn-r12032] Purpose:

Maintenance on Windows
Description:
Batch file improvement
Solution:

Platforms tested:
Windows XP
Misc. update:
This commit is contained in:
Fang Guo 2006-03-07 14:58:15 -05:00
parent 8199e183e5
commit 44c3748cf8

View File

@ -16,7 +16,7 @@
@:: Examples' executable files.
@:: Written by : Fang GUO
@:: Created on : 07/25/2005
@:: Last Modified:
@:: Last Modified: 03/08/2006
cd hl/examples
@ -25,33 +25,9 @@ mkdir HLCexamplesRELEASEDLL
mkdir HLCexamplesDEBUG
mkdir HLCexamplesDEBUGDLL
cd ex_images
copy debug\ex_images.exe ..\HLCexamplesDEBUG\
copy release\ex_images.exe ..\HLCexamplesRELEASE\
cd ..
cd ex_imagesdll
copy debug\ex_imagesdll.exe ..\HLCexamplesDEBUGDLL\
copy release\ex_imagesdll.exe ..\HLCexamplesRELEASEDLL\
cd ..
cd ex_lite
copy debug\ex_lite.exe ..\HLCexamplesDEBUG\
copy release\ex_lite.exe ..\HLCexamplesRELEASE\
cd ..
cd ex_litedll
copy debug\ex_litedll.exe ..\HLCexamplesDEBUGDLL\
copy release\ex_litedll.exe ..\HLCexamplesRELEASEDLL\
cd ..
cd ex_table
copy debug\ex_table.exe ..\HLCexamplesDEBUG\
copy release\ex_table.exe ..\HLCexamplesRELEASE\
cd ..
cd ex_tabledll
copy debug\ex_tabledll.exe ..\HLCexamplesDEBUGDLL\
copy release\ex_tabledll.exe ..\HLCexamplesRELEASEDLL\
cd ..
for %%i in (images lite table ds packet) do (
copy ex_%%i\debug\ex_%%i.exe HLCexamplesDEBUG\
copy ex_%%i\release\ex_%%i.exe HLCexamplesRELEASE\
copy ex_%%idll\debug\ex_%%idll.exe HLCexamplesDEBUGDLL\
copy ex_%%idll\release\ex_%%idll.exe HLCexamplesRELEASEDLL\
)