diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2007-07-16 16:50:07 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2007-07-16 16:50:07 (GMT) |
commit | 00b5ba099ebb5d8ebeffcad9f2548a9b5b02f224 (patch) | |
tree | e945a1b097e84a9ee8d1f88e163540568a3d371b /windows/hdf5build.BAT | |
parent | 035152a58577e39ecd104e252032800923963648 (diff) | |
download | hdf5-00b5ba099ebb5d8ebeffcad9f2548a9b5b02f224.zip hdf5-00b5ba099ebb5d8ebeffcad9f2548a9b5b02f224.tar.gz hdf5-00b5ba099ebb5d8ebeffcad9f2548a9b5b02f224.tar.bz2 |
[svn-r13981] Purpose: Windows catchup
Description:
- Add new source file H5version.h to Windows projects
- Add new h5stat tests, and uncomment one that no longer fails
- Clean up autotests a little bit.
Tested:
VS.NET on WinXP
Diffstat (limited to 'windows/hdf5build.BAT')
-rwxr-xr-x | windows/hdf5build.BAT | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/windows/hdf5build.BAT b/windows/hdf5build.BAT index 9fc55fa..53a2ff3 100755 --- a/windows/hdf5build.BAT +++ b/windows/hdf5build.BAT @@ -100,8 +100,8 @@ goto main ) else set hdf5_sln="%CD%\windows\proj\all\all.sln"
:: Set external libraries if they aren't already set
- if x%hdf5_ext_zlib%==x set hdf5_ext_zlib=%zlib_name%
- if x%hdf5_ext_szip%==x set hdf5_ext_szip=%szip_name%
+ if "x%hdf5_ext_zlib%"=="x" set hdf5_ext_zlib=%zlib_name%
+ if "x%hdf5_ext_szip%"=="x" set hdf5_ext_szip=%szip_name%
:: Setup Visual Studio environment. By default, use the Visual Studio .NET environment
@@ -120,6 +120,7 @@ goto main echo.Building Fortran from commandline with .NET not yet implemented!
echo.Building Fortran from commandline with .NET not yet implemented! >> %build_results%
exit /b 1
+ )
)
exit /b 0
|