diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2009-02-04 21:51:51 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2009-02-04 21:51:51 (GMT) |
commit | bf3f68890c316bf561c583bc56a6a06e134410e8 (patch) | |
tree | eab3cd198bd90c28b9f5fb7818b570b6c22bd4d0 /windows | |
parent | 89f033b6616484f2d0f48a10458f8fa2652fdde4 (diff) | |
download | hdf5-bf3f68890c316bf561c583bc56a6a06e134410e8.zip hdf5-bf3f68890c316bf561c583bc56a6a06e134410e8.tar.gz hdf5-bf3f68890c316bf561c583bc56a6a06e134410e8.tar.bz2 |
[svn-r16428] Purpose: Fix Windows install script to include missing tool binaries
Description:
A user discovered that the HDF5 1.8.2 Windows release binaries were missing a few of the HDF5 tools. This is due to the Windows install script, which simply didn't include them. This commit fixes the install script to include h5copy, h5mkgrp, and h5stat
Tested:
VS2005 w/ WinXP, build and install only
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/installhdf5lib.bat | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/windows/installhdf5lib.bat b/windows/installhdf5lib.bat index 8ee5bb6..e10707b 100755 --- a/windows/installhdf5lib.bat +++ b/windows/installhdf5lib.bat @@ -78,14 +78,17 @@ rem Install C Libraries and Tools rem bin
call :safe_copy hl\tools\gifconv\gif2h5\debug\gif2h5.exe hdf5lib\debug\bin
call :safe_copy hl\tools\gifconv\h52gif\debug\h52gif.exe hdf5lib\debug\bin
+ call :safe_copy tools\h5copy\debug\h5copy.exe hdf5lib\debug\bin
call :safe_copy tools\h5debug\debug\h5debug.exe hdf5lib\debug\bin
call :safe_copy tools\h5diff\debug\h5diff.exe hdf5lib\debug\bin
call :safe_copy tools\h5dump\debug\h5dump.exe hdf5lib\debug\bin
call :safe_copy tools\h5import\debug\h5import.exe hdf5lib\debug\bin
call :safe_copy tools\h5jam\debug\h5jam.exe hdf5lib\debug\bin
call :safe_copy tools\h5ls\debug\h5ls.exe hdf5lib\debug\bin
+ call :safe_copy tools\h5mkgrp\debug\h5mkgrp.exe hdf5lib\debug\bin
call :safe_copy tools\h5repack\debug\h5repack.exe hdf5lib\debug\bin
call :safe_copy tools\h5repart\debug\h5repart.exe hdf5lib\debug\bin
+ call :safe_copy tools\h5stat\debug\h5stat.exe hdf5lib\debug\bin
call :safe_copy tools\h5unjam\debug\h5unjam.exe hdf5lib\debug\bin
rem bindll
call :safe_copy hl\tools\gifconvdll\h52gifdll\debug\h52gifdll.exe hdf5lib\debug\bindll
@@ -110,14 +113,17 @@ rem Install C Libraries and Tools rem bin
call :safe_copy hl\tools\gifconv\gif2h5\release\gif2h5.exe hdf5lib\release\bin
call :safe_copy hl\tools\gifconv\h52gif\release\h52gif.exe hdf5lib\release\bin
+ call :safe_copy tools\h5copy\release\h5copy.exe hdf5lib\release\bin
call :safe_copy tools\h5debug\release\h5debug.exe hdf5lib\release\bin
call :safe_copy tools\h5diff\release\h5diff.exe hdf5lib\release\bin
call :safe_copy tools\h5dump\release\h5dump.exe hdf5lib\release\bin
call :safe_copy tools\h5import\release\h5import.exe hdf5lib\release\bin
call :safe_copy tools\h5jam\release\h5jam.exe hdf5lib\release\bin
call :safe_copy tools\h5ls\release\h5ls.exe hdf5lib\release\bin
+ call :safe_copy tools\h5mkgrp\release\h5mkgrp.exe hdf5lib\release\bin
call :safe_copy tools\h5repack\release\h5repack.exe hdf5lib\release\bin
call :safe_copy tools\h5repart\release\h5repart.exe hdf5lib\release\bin
+ call :safe_copy tools\h5stat\release\h5stat.exe hdf5lib\release\bin
call :safe_copy tools\h5unjam\release\h5unjam.exe hdf5lib\release\bin
rem bindll
call :safe_copy hl\tools\gifconvdll\h52gifdll\release\h52gifdll.exe hdf5lib\release\bindll
|