diff options
author | Scott Wegner <swegner@hdfgroup.org> | 2008-02-25 20:50:21 (GMT) |
---|---|---|
committer | Scott Wegner <swegner@hdfgroup.org> | 2008-02-25 20:50:21 (GMT) |
commit | fd50c1ae9b4af1e675102e27885e449d0b215a05 (patch) | |
tree | 41ec825ecaf8f649c3f6b024673dcb82207decdb /windows | |
parent | acfc6ce5baab54af5cabc1aef927310ada92dc1d (diff) | |
download | hdf5-fd50c1ae9b4af1e675102e27885e449d0b215a05.zip hdf5-fd50c1ae9b4af1e675102e27885e449d0b215a05.tar.gz hdf5-fd50c1ae9b4af1e675102e27885e449d0b215a05.tar.bz2 |
[svn-r14674] Purpose: Backport Windows updates from trunk
Description:
Allow building Fortran libraries from the Windows commandline
Tested:
VS2005 on WinXP
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/hdf5build.BAT | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/hdf5build.BAT b/windows/hdf5build.BAT index 71f079c..f361e23 100755 --- a/windows/hdf5build.BAT +++ b/windows/hdf5build.BAT @@ -158,7 +158,7 @@ rem Build the HDF5 libraries. By default, C and C++ libraries are built. rem Build both debug and release versions
for %%a in (debug release) DO (
echo.Building %%a libraries...
- devenv .\windows\proj\all\all.sln %ccflags% /rebuild %%a
+ devenv %hdf5_sln% %ccflags% /rebuild %%a
if !errorlevel! neq 0 exit /b
)
|