diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2009-11-11 17:47:56 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2009-11-11 17:47:56 (GMT) |
commit | 78c1df79c3760dee51b265978cd928d26e94375f (patch) | |
tree | 38513c6e591c09f5586c8cd79e9080d449fe512d /windows/install_dll.BAT | |
parent | a44328438aa5bbe4c4927b584af18d7965e6794a (diff) | |
download | hdf5-78c1df79c3760dee51b265978cd928d26e94375f.zip hdf5-78c1df79c3760dee51b265978cd928d26e94375f.tar.gz hdf5-78c1df79c3760dee51b265978cd928d26e94375f.tar.bz2 |
[svn-r17869] Removed VS6 reference in install_dll.bat.
Added option to not build and test debug versions.
Diffstat (limited to 'windows/install_dll.BAT')
-rwxr-xr-x | windows/install_dll.BAT | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/windows/install_dll.BAT b/windows/install_dll.BAT index 8a133c3..089d169 100755 --- a/windows/install_dll.BAT +++ b/windows/install_dll.BAT @@ -45,15 +45,8 @@ rem Add the DLLS to be copied here. rem HDF5 Library
call :copy_dll proj\hdf5dll\debug\hdf5ddll.dll
call :copy_dll proj\hdf5dll\release\hdf5dll.dll
- rem We need this conditional because vs6 uses libtestD rather than libtestdll,
- rem Remove later when we fix the VS6 project name.
- if exist test\libtestdll\debug\libtestddll.dll (
- call :copy_dll test\libtestdll\debug\libtestddll.dll
- call :copy_dll test\libtestdll\release\libtestdll.dll
- ) else (
- call :copy_dll test\libtestD\debug\libtestDd.dll
- call :copy_dll test\libtestD\release\libtestD.dll
- )
+ call :copy_dll test\libtestdll\debug\libtestddll.dll
+ call :copy_dll test\libtestdll\release\libtestdll.dll
rem C++
call :copy_dll proj\hdf5_cppdll\debug\hdf5_cppddll.dll
|