diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-03-22 13:49:02 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-03-22 13:49:02 (GMT) |
commit | 36d7bd204d1d270b702ef581446afc1e1080cbd7 (patch) | |
tree | 83c0ea6a67669573a19756109fd475d468090c2e /windows/InstallcppExamples.BAT | |
parent | 9a80e52533e2038c392c671d72d907d5919a6d9a (diff) | |
download | hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.zip hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.tar.gz hdf5-36d7bd204d1d270b702ef581446afc1e1080cbd7.tar.bz2 |
[svn-r10251] Purpose:
Remove all.zip for supporting windows.
Why?
1. Avoid confliction for windows programmers
2. Decrease size of CVS tree by adding all.zip
3. Avoid using winzip as the intermediate step
Kent Yang
Description:
Put all windows project files under hdf5/windows directory.
This check-in includes some batch files.
Solution:
Platforms tested:
VS 6.0, windows XP
Misc. update:
Diffstat (limited to 'windows/InstallcppExamples.BAT')
-rwxr-xr-x | windows/InstallcppExamples.BAT | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/windows/InstallcppExamples.BAT b/windows/InstallcppExamples.BAT new file mode 100755 index 0000000..20d1eaf --- /dev/null +++ b/windows/InstallcppExamples.BAT @@ -0,0 +1,85 @@ +@ECHO OFF +REM This batch file is used to install HDF5 C++ examples' +REM executable files. +REM By Xuan Bai +REM Created on: 10/20/2004 +REM Last Modified: 10/27/2004 + +cd c++\examples + +mkdir cppexamplesREL +mkdir cppexamplesRELDLL +mkdir cppexamplesDBG +mkdir cppexamplesDBGDLL + +cd chunkstest +copy debug\chunkstest.exe ..\cppexamplesDBG\ +copy release\chunkstest.exe ..\cppexamplesREL\ +cd .. + +cd chunkstestdll +copy debug\chunkstestdll.exe ..\cppexamplesDBGDLL\ +copy release\chunkstestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd compoundtest +copy debug\compoundtest.exe ..\cppexamplesDBG\ +copy release\compoundtest.exe ..\cppexamplesREL\ +cd .. + +cd compoundtestdll +copy debug\compoundtestdll.exe ..\cppexamplesDBGDLL\ +copy release\compoundtestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd createtest +copy debug\createtest.exe ..\cppexamplesDBG\ +copy release\createtest.exe ..\cppexamplesREL\ +cd .. + +cd createtestdll +copy debug\createtestdll.exe ..\cppexamplesDBGDLL\ +copy release\createtestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd extend_dstest +copy debug\extend_dstest.exe ..\cppexamplesDBG\ +copy release\extend_dstest.exe ..\cppexamplesREL\ +cd .. + +cd extend_dstestdll +copy debug\extend_dstestdll.exe ..\cppexamplesDBGDLL\ +copy release\extend_dstestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd h5grouptest +copy debug\h5grouptest.exe ..\cppexamplesDBG\ +copy release\h5grouptest.exe ..\cppexamplesREL\ +cd .. + +cd h5grouptestdll +copy debug\h5grouptestdll.exe ..\cppexamplesDBGDLL\ +copy release\h5grouptestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd readdatatest +copy debug\readdatatest.exe ..\cppexamplesDBG\ +copy release\readdatatest.exe ..\cppexamplesREL\ +cd .. + +cd readdatatestdll +copy debug\readdatatestdll.exe ..\cppexamplesDBGDLL\ +copy release\readdatatestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd writedatatest +copy debug\writedatatest.exe ..\cppexamplesDBG\ +copy release\writedatatest.exe ..\cppexamplesREL\ +cd .. + +cd writedatatestdll +copy debug\writedatatestdll.exe ..\cppexamplesDBGDLL\ +copy release\writedatatestdll.exe ..\cppexamplesRELDLL\ +cd .. + +cd ..\..
\ No newline at end of file |