diff options
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/hdf5bt.BAT | 10 | ||||
-rwxr-xr-x | windows/hdf5build.BAT | 10 | ||||
-rw-r--r-- | windows/proj/hdf5/hdf5.vcproj | 4 | ||||
-rw-r--r-- | windows/proj/hdf5dll/hdf5dll.vcproj | 4 |
4 files changed, 16 insertions, 12 deletions
diff --git a/windows/hdf5bt.BAT b/windows/hdf5bt.BAT index dd48f10..1cb4644 100755 --- a/windows/hdf5bt.BAT +++ b/windows/hdf5bt.BAT @@ -16,8 +16,6 @@ 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 . /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 and test HDF5 with Fortran libraries
@@ -63,8 +61,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 and test HDF5 with Fortran libraries
@@ -82,8 +78,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 to build
- set hdf5_vnet=true
+ rem Visual Studio .NET not supported
+ rem Set errorlevel 1 and send to help
+ call :help
+ exit /b 1
) else if "%%a"=="/vs9" (
rem Use Visual Studio 2008 to build
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
diff --git a/windows/proj/hdf5/hdf5.vcproj b/windows/proj/hdf5/hdf5.vcproj index 53717f7..d2b0b18 100644 --- a/windows/proj/hdf5/hdf5.vcproj +++ b/windows/proj/hdf5/hdf5.vcproj @@ -1503,6 +1503,10 @@ </FileConfiguration>
</File>
<File
+ RelativePath="..\..\..\src\H5Dlayout.c"
+ >
+ </File>
+ <File
RelativePath="..\..\..\src\H5Dmpio.c"
>
<FileConfiguration
diff --git a/windows/proj/hdf5dll/hdf5dll.vcproj b/windows/proj/hdf5dll/hdf5dll.vcproj index fe0b1aa..d9ba5ff 100644 --- a/windows/proj/hdf5dll/hdf5dll.vcproj +++ b/windows/proj/hdf5dll/hdf5dll.vcproj @@ -1584,6 +1584,10 @@ </FileConfiguration>
</File>
<File
+ RelativePath="..\..\..\src\H5Dlayout.c"
+ >
+ </File>
+ <File
RelativePath="..\..\..\src\H5Dmpio.c"
>
<FileConfiguration
|