summaryrefslogtreecommitdiffstats
path: root/windows/install_dll.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/install_dll.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/install_dll.BAT')
-rwxr-xr-xwindows/install_dll.BAT12
1 files changed, 12 insertions, 0 deletions
diff --git a/windows/install_dll.BAT b/windows/install_dll.BAT
new file mode 100755
index 0000000..91fc7e5
--- /dev/null
+++ b/windows/install_dll.BAT
@@ -0,0 +1,12 @@
+@REM File name: install_dll.bat
+@REM This batch file is used to copy HDF5 c library DLLs into system folder.
+@REM By Xuan Bai
+@REM Created: Aug. 12, 2004
+@REM Last Updated: Aug. 16, 2004
+
+@ ECHO OFF
+copy proj\hdf5dll\debug\hdf5ddll.dll %SystemRoot%\system >temp.txt
+copy proj\hdf5dll\release\hdf5dll.dll %SystemRoot%\system >temp.txt
+copy test\libtestD\debug\libtestDd.dll %SystemRoot%\system >temp.txt
+copy test\libtestD\release\libtestD.dll %SystemRoot%\system >temp.txt
+del temp.txt \ No newline at end of file