summaryrefslogtreecommitdiffstats
path: root/windows/InstallExamples.bat
diff options
context:
space:
mode:
authorFang Guo <fangguo@ncsa.uiuc.edu>2005-03-22 13:49:02 (GMT)
committerFang Guo <fangguo@ncsa.uiuc.edu>2005-03-22 13:49:02 (GMT)
commit36d7bd204d1d270b702ef581446afc1e1080cbd7 (patch)
tree83c0ea6a67669573a19756109fd475d468090c2e /windows/InstallExamples.bat
parent9a80e52533e2038c392c671d72d907d5919a6d9a (diff)
downloadhdf5-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/InstallExamples.bat')
-rwxr-xr-xwindows/InstallExamples.bat95
1 files changed, 95 insertions, 0 deletions
diff --git a/windows/InstallExamples.bat b/windows/InstallExamples.bat
new file mode 100755
index 0000000..b2abedd
--- /dev/null
+++ b/windows/InstallExamples.bat
@@ -0,0 +1,95 @@
+@ECHO OFF
+REM This batch file is used to install HDF5 C examples'
+REM executable files.
+REM By Xuan Bai
+REM Created on: 9/20/2004
+REM Last Modified: 10/27/2004
+
+cd examples
+
+mkdir examplesREL
+mkdir examplesRELDLL
+mkdir examplesDBG
+mkdir examplesDBGDLL
+
+cd attributetest
+copy debug\attributetest.exe ..\examplesDBG\
+copy release\attributetest.exe ..\examplesREL\
+cd ..
+
+cd attributetestdll
+copy debug\attributetestdll.exe ..\examplesDBGDLL\
+copy release\attributetestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd chunkread
+copy debug\chunkread.exe ..\examplesDBG\
+copy release\chunkread.exe ..\examplesREL\
+cd ..
+
+cd chunkreaddll
+copy debug\chunkreaddll.exe ..\examplesDBGDLL\
+copy release\chunkreaddll.exe ..\examplesRELDLL\
+cd ..
+
+cd compoundtest
+copy debug\compoundtest.exe ..\examplesDBG\
+copy release\compoundtest.exe ..\examplesREL\
+cd ..
+
+cd compoundtestdll
+copy debug\compoundtestdll.exe ..\examplesDBGDLL\
+copy release\compoundtestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd extendwritetest
+copy debug\extendwritetest.exe ..\examplesDBG\
+copy release\extendwritetest.exe ..\examplesREL\
+cd ..
+
+cd extendwritetestdll
+copy debug\extendwritetestdll.exe ..\examplesDBGDLL\
+copy release\extendwritetestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd grouptest
+copy debug\grouptest.exe ..\examplesDBG\
+copy release\grouptest.exe ..\examplesREL\
+cd ..
+
+cd grouptestdll
+copy debug\grouptestdll.exe ..\examplesDBGDLL\
+copy release\grouptestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd readtest
+copy debug\readtest.exe ..\examplesDBG\
+copy release\readtest.exe ..\examplesREL\
+cd ..
+
+cd readtestdll
+copy debug\readtestdll.exe ..\examplesDBGDLL\
+copy release\readtestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd selectest
+copy debug\selectest.exe ..\examplesDBG\
+copy release\selectest.exe ..\examplesREL\
+cd ..
+
+cd selectestdll
+copy debug\selectestdll.exe ..\examplesDBGDLL\
+copy release\selectestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd writetest
+copy debug\writetest.exe ..\examplesDBG\
+copy release\writetest.exe ..\examplesREL\
+cd ..
+
+cd writetestdll
+copy debug\writetestdll.exe ..\examplesDBGDLL\
+copy release\writetestdll.exe ..\examplesRELDLL\
+cd ..
+
+cd .. \ No newline at end of file