diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2010-06-22 19:04:20 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2010-06-22 19:04:20 (GMT) |
commit | f747973a518b5b4b7424e6a0293e7673c1055525 (patch) | |
tree | 04344793d66c58cc01500262ac32cb5dcf457808 /Resources | |
parent | bbba3fbf7bf89fd2d00c0b13e6d80d740d1eb15d (diff) | |
download | hdf5-f747973a518b5b4b7424e6a0293e7673c1055525.zip hdf5-f747973a518b5b4b7424e6a0293e7673c1055525.tar.gz hdf5-f747973a518b5b4b7424e6a0293e7673c1055525.tar.bz2 |
[svn-r19027] Add testing files to cmake resources.
Added code coverage option to cmake.
Tested: local linux
Diffstat (limited to 'Resources')
-rwxr-xr-x | Resources/CTestCustom.ctest | 2 | ||||
-rwxr-xr-x | Resources/cacheinit.cmake | 35 |
2 files changed, 37 insertions, 0 deletions
diff --git a/Resources/CTestCustom.ctest b/Resources/CTestCustom.ctest new file mode 100755 index 0000000..23b4163 --- /dev/null +++ b/Resources/CTestCustom.ctest @@ -0,0 +1,2 @@ +SET (CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS 1500) + diff --git a/Resources/cacheinit.cmake b/Resources/cacheinit.cmake new file mode 100755 index 0000000..23e6aed --- /dev/null +++ b/Resources/cacheinit.cmake @@ -0,0 +1,35 @@ +# This is the CMakeCache file.
+
+########################
+# EXTERNAL cache entries
+########################
+
+SET (BUILD_SHARED_LIBS ON CACHE BOOL "Build Shared Libraries" FORCE)
+
+SET (BUILD_TESTING ON CACHE BOOL "Build HDF5 Unit Testing" FORCE)
+
+SET (HDF5_BUILD_CPP_LIB ON CACHE BOOL "Build HDF5 C++ Library" FORCE)
+
+SET (HDF5_BUILD_EXAMPLES ON CACHE BOOL "Build HDF5 Library Examples" FORCE)
+
+SET (HDF5_BUILD_FORTRAN ON CACHE BOOL "Build FORTRAN support" FORCE)
+
+SET (HDF5_BUILD_HL_LIB ON CACHE BOOL "Build HIGH Level HDF5 Library" FORCE)
+
+SET (HDF5_BUILD_TOOLS ON CACHE BOOL "Build HDF5 Tools" FORCE)
+
+SET (HDF5_DISABLE_COMPILER_WARNINGS OFF CACHE BOOL "Disable compiler warnings" FORCE)
+
+SET (HDF5_ENABLE_HSIZET ON CACHE BOOL "Enable datasets larger than memory" FORCE)
+
+SET (HDF5_ENABLE_PARALLEL OFF CACHE BOOL "Enable parallel build (requires MPI)" FORCE)
+
+SET (HDF5_ENABLE_SZIP_ENCODING ON CACHE BOOL "Use SZip Encoding" FORCE)
+
+SET (HDF5_ENABLE_SZIP_SUPPORT ON CACHE BOOL "Use SZip Filter" FORCE)
+
+SET (HDF5_ENABLE_Z_LIB_SUPPORT ON CACHE BOOL "Enable Zlib Filters" FORCE)
+
+SET (HDF5_USE_H5DUMP_PACKED_BITS ON CACHE BOOL "Use the PACKED BITS feature in h5dump" FORCE)
+
+SET (HDF5_ENABLE_COVERAGE OFF CACHE BOOL "Enable code coverage for Libraries and Programs" FORCE)
|