diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-07-22 22:38:24 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-07-22 22:38:24 (GMT) |
commit | 60c14da9885700203f248720499cbda744e94267 (patch) | |
tree | a951fe859d03c56c6b1e3d54491e36ed05d39cd5 /windows/install_hlf90dll.bat | |
parent | e0a048298bdc7e770429584172200e4c85f5dd05 (diff) | |
download | hdf5-60c14da9885700203f248720499cbda744e94267.zip hdf5-60c14da9885700203f248720499cbda744e94267.tar.gz hdf5-60c14da9885700203f248720499cbda744e94267.tar.bz2 |
[svn-r11138] Purpose:
Improvement
Description:
New batch file to install HL fortran dlls
Solution:
Platforms tested:
Misc. update:
Diffstat (limited to 'windows/install_hlf90dll.bat')
-rwxr-xr-x | windows/install_hlf90dll.bat | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/windows/install_hlf90dll.bat b/windows/install_hlf90dll.bat new file mode 100755 index 0000000..ee0123c --- /dev/null +++ b/windows/install_hlf90dll.bat @@ -0,0 +1,13 @@ +@REM File name: install_hlf90dll.bat +@REM This batch file is used to copy HDF5 fortran library high level DLLs into system folder. +@REM By Fang GUO +@REM Created: July 15, 2005 +@REM Last Updated: + +@ECHO OFF +copy proj\hdf5_hl_fortrandll\Debug\hdf5_hl_fortrandlld.dll %SystemRoot%\system >temp.txt +copy proj\hdf5_hl_f90cstubdll\Debug\hdf5_hl_f90cstubdlld.dll %SystemRoot%\system >temp.txt +copy proj\hdf5_hl_fortrandll\Release\hdf5_hl_fortrandll.dll %SystemRoot%\system >temp.txt +copy proj\hdf5_hl_f90cstubdll\Release\hdf5_hl_f90cstubdll.dll %SystemRoot%\system >temp.txt + +del temp.txt
\ No newline at end of file |