diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2009-07-28 21:02:49 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2009-07-28 21:02:49 (GMT) |
commit | e1ded781a52dddd7d5ff84b54fbe4b93b93ad8b5 (patch) | |
tree | 229d0fd924481d4023222811d7e3b30e20650850 /windows/hdf5build.BAT | |
parent | a6676de3c8cf07ef5a2e8f6d9b8f6bf4f3e779d3 (diff) | |
download | hdf5-e1ded781a52dddd7d5ff84b54fbe4b93b93ad8b5.zip hdf5-e1ded781a52dddd7d5ff84b54fbe4b93b93ad8b5.tar.gz hdf5-e1ded781a52dddd7d5ff84b54fbe4b93b93ad8b5.tar.bz2 |
[svn-r17256] Added new file, H5Dlayout.c to project files.
Deleted obsolete vnet project files as it is no longer supported for HDF55 1.9 and above
Removed references from batch build files.
Release documents still need to be updated.
Tested XP32 VS2005
Diffstat (limited to 'windows/hdf5build.BAT')
-rwxr-xr-x | windows/hdf5build.BAT | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/windows/hdf5build.BAT b/windows/hdf5build.BAT index abb6c90..e2a062c 100755 --- a/windows/hdf5build.BAT +++ b/windows/hdf5build.BAT @@ -16,8 +16,6 @@ rem access to either file, you may request a copy from helphdfgroup.org. rem File Name: hdf5build.bat
rem This batch file is used to build HDF5 Libraries and Tools.
rem This batch file takes the following options:
-rem . /vs7 Build HDF5 using Visual Studio .NET 2003
-rem . Note: Default is Visual Studio 2005
rem . /vs9 Build HDF5 using Visual Studio 2008
rem . Note: Default is Visual Studio 2005
rem . /fort Build HDF5 with Fortran libraries
@@ -58,8 +56,6 @@ rem Print a help message echo.
echo.Usage: %~nx0 [OPTION]
echo.
- echo. /vs7 Build HDF5 using Visual Studio .NET 2003
- echo. Note: Default is Visual Studio 2005
echo. /vs9 Build HDF5 using Visual Studio 2008
echo. Note: Default is Visual Studio 2005
echo. /fort Build HDF5 with Fortran libraries using the
@@ -78,8 +74,10 @@ rem Parse through the parameters sent to file, and set appropriate variables for %%a in (%*) do (
if "%%a"=="/vs7" (
- rem Use Visual Studio .NET 2003
- set hdf5_vnet=true
+ rem Visual Studio .NET 2003 not supported
+ rem Set errorlevel 1 and send to help
+ call :help
+ exit /b 1
) else if "%%a"=="/vs9" (
rem Use Visual Studio .NET 2003
|