summaryrefslogtreecommitdiffstats
path: root/windows/hdf5bt.BAT
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2010-03-03 20:20:16 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2010-03-03 20:20:16 (GMT)
commitef844be70d9c85c1d6093a91283ce915f0351140 (patch)
treee6e83fe7de4c23157cc8bf9a28abe2c4c2496fe9 /windows/hdf5bt.BAT
parent483185409e16ec83c24301e21bfdc92234506730 (diff)
downloadhdf5-ef844be70d9c85c1d6093a91283ce915f0351140.zip
hdf5-ef844be70d9c85c1d6093a91283ce915f0351140.tar.gz
hdf5-ef844be70d9c85c1d6093a91283ce915f0351140.tar.bz2
[svn-r18360] Updated project files and release docs to VS2008 and IVF101 based.
Made change to cpp version of testhdf5 for the elimination of dsets standalone. Tested: Windows
Diffstat (limited to 'windows/hdf5bt.BAT')
-rwxr-xr-xwindows/hdf5bt.BAT29
1 files changed, 12 insertions, 17 deletions
diff --git a/windows/hdf5bt.BAT b/windows/hdf5bt.BAT
index c0b58a5..0d61260 100755
--- a/windows/hdf5bt.BAT
+++ b/windows/hdf5bt.BAT
@@ -16,21 +16,16 @@ rem access to either file, you may request a copy from help@hdfgroup.org.
rem File Name: hdf5bt.bat
rem This batch file is used to build and test HDF5 Libraries and Tools.
rem This batch file takes the following options:
-rem . /vs8 Build HDF5 using Visual Studio 2005
rem . /vs9 Build HDF5 using Visual Studio 2008
-rem . Note: Default is Visual Studio 2005
rem . /fort Build and test HDF5 with Fortran libraries
rem . /useenv Build HDF5 using compiler settings defined
rem . in the environment, rather than the IDE.
rem . /ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
-rem . /ivf91 Note: Default is Intel Visual Fortran 9.1
+rem . /ivf111 Build HDF5 Fortran using Intel Visual Fortran 11.1
rem . /log Log the build and test results in files defined by
rem . environment variables HDF5BUILD_LOG and
rem . HDF5CHECK_LOG
rem . /? Help information
-rem By Xuan Bai
-rem Created: Aug. 16, 2004
-rem Last Updated: Scott Wegner, 7/2/08
rem This batch file makes the following assumptions:
rem - The appropriate version of Visual Studio is installed and setup
@@ -62,12 +57,10 @@ rem Print a help message
echo.
echo Usage: %~nx0 [OPTION]
echo.
- echo. /vs8 Build HDF5 using Visual Studio 2005
echo. /vs9 Build HDF5 using Visual Studio 2008
- echo. Note: Default is Visual Studio 2005
echo. /fort Build and test HDF5 with Fortran libraries
echo. /ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
- echo. /ivf91 Note: Default is Intel Visual Fortran 9.1
+ echo. /ivf111 Build HDF5 Fortran using Intel Visual Fortran 9.1
echo. /useenv Build HDF5 using compiler settings defined
echo. in the environment, rather than the IDE.
echo. /? Help information
@@ -81,7 +74,8 @@ rem Parse through the parameters sent to file, and set appropriate variables
for %%a in (%*) do (
if "%%a"=="/vs8" (
rem Use Visual Studio 2005 to build
- set hdf5_vs2005=true
+ call :help
+ exit /b 1
) else if "%%a"=="/vs9" (
rem Use Visual Studio 2008 to build
@@ -93,12 +87,17 @@ rem Parse through the parameters sent to file, and set appropriate variables
) else if "%%a"=="/ivf91" (
rem Enable Fortran
- set hdf5_ivf91=true
+ call :help
+ exit /b 1
) else if "%%a"=="/ivf101" (
rem Enable Fortran
set hdf5_ivf101=true
+ ) else if "%%a"=="/ivf111" (
+ rem Enable Fortran
+ set hdf5_ivf111=true
+
) else if "%%a"=="/useenv" (
rem Pass /useenv flag to devenv
set hdf5_useenv=true
@@ -131,10 +130,6 @@ rem Setup our environment
set hdf5build_params=
set hdf5check_params=enablecpp
- if defined hdf5_vs2005 (
- set hdf5build_params=%hdf5build_params% /vs8
- )
-
if defined hdf5_vs2008 (
set hdf5build_params=%hdf5build_params% /vs9
)
@@ -144,8 +139,8 @@ rem Setup our environment
set hdf5check_params=enableall
)
- if defined hdf5_ivf91 (
- set hdf5build_params=%hdf5build_params% /ivf91
+ if defined hdf5_ivf111 (
+ set hdf5build_params=%hdf5build_params% /ivf111
)
if defined hdf5_ivf101 (