diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-01-11 19:00:31 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-01-11 19:00:31 (GMT) |
commit | 089d0ea9ad847230188d9009f4e015953bd4fea3 (patch) | |
tree | af37bdb50be012fb84ce1458267ab4c59d8b1688 /windows | |
parent | 30f3fcaa4a87bbbe7b56ba61d1d49a5fec4fbe79 (diff) | |
download | hdf5-089d0ea9ad847230188d9009f4e015953bd4fea3.zip hdf5-089d0ea9ad847230188d9009f4e015953bd4fea3.tar.gz hdf5-089d0ea9ad847230188d9009f4e015953bd4fea3.tar.bz2 |
[svn-r18103] Added new H5HLint.c file. Corrected nodebug parameter to check.
Tested: windows
Diffstat (limited to 'windows')
-rwxr-xr-x | windows/hdf5check.BAT | 6 | ||||
-rw-r--r-- | windows/proj/hdf5/hdf5.vcproj | 4 | ||||
-rw-r--r-- | windows/proj/hdf5dll/hdf5dll.vcproj | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/windows/hdf5check.BAT b/windows/hdf5check.BAT index 2f14bfd..07319ca 100755 --- a/windows/hdf5check.BAT +++ b/windows/hdf5check.BAT @@ -20,7 +20,7 @@ rem 1. hdf5check -- HDF5 tools and c library tests rem 2. hdf5check enablecpp -- HDF5 tools and c/c++ library tests
rem 3. hdf5check enablefortran -- HDF5 tools and c/fortran library tests
rem 4. hdf5check enableall -- HDF5 tools and c/c++/fortran library tests
-rem disabledebug -- can be added to any of the above to not test debug versions
+rem nodebug -- can be added to any of the above to not test debug versions
setlocal enabledelayedexpansion
pushd %~dp0
@@ -50,10 +50,10 @@ if /i "%1" equ "enablecpp" ( ) else if /i "%1" equ "enableall" (
set build_cpp_conditional=true
set build_fortran_conditional=true
-) else if /i "%1" equ "disabledebug" (
+) else if /i "%1" equ "nodebug" (
set chkdebug=
)
-if /i "%2" equ "disabledebug" (
+if /i "%2" equ "nodebug" (
set chkdebug=
)
diff --git a/windows/proj/hdf5/hdf5.vcproj b/windows/proj/hdf5/hdf5.vcproj index aa25df8..2f4720d 100644 --- a/windows/proj/hdf5/hdf5.vcproj +++ b/windows/proj/hdf5/hdf5.vcproj @@ -764,6 +764,10 @@ >
</File>
<File
+ RelativePath="..\..\..\src\H5HLint.c"
+ >
+ </File>
+ <File
RelativePath="..\..\..\src\H5HP.c"
>
</File>
diff --git a/windows/proj/hdf5dll/hdf5dll.vcproj b/windows/proj/hdf5dll/hdf5dll.vcproj index 9e4d522..eb5331c 100644 --- a/windows/proj/hdf5dll/hdf5dll.vcproj +++ b/windows/proj/hdf5dll/hdf5dll.vcproj @@ -854,6 +854,10 @@ >
</File>
<File
+ RelativePath="..\..\..\src\H5HLint.c"
+ >
+ </File>
+ <File
RelativePath="..\..\..\src\H5HP.c"
>
</File>
|