diff options
author | jhendersonHDF <jhenderson@hdfgroup.org> | 2023-04-13 16:16:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 16:16:55 (GMT) |
commit | bc4d78e474221a21f966edd148090b9c270577ae (patch) | |
tree | 9edfce113c4753cf24292b14ea329e73c749fe8a /CMakeLists.txt | |
parent | 1d4c9ac7957bf29bb2c3641d196755e640f2bdd4 (diff) | |
download | hdf5-bc4d78e474221a21f966edd148090b9c270577ae.zip hdf5-bc4d78e474221a21f966edd148090b9c270577ae.tar.gz hdf5-bc4d78e474221a21f966edd148090b9c270577ae.tar.bz2 |
CMake - Match Autotools behavior for library instrumentation (#2648) (#2673)
Enable library instrumentation by default for parallel debug builds
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 888070c..1e657fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -655,9 +655,15 @@ option (HDF5_BUILD_GENERATORS "Build Test Generators" OFF) #----------------------------------------------------------------------------- option (HDF5_ENABLE_TRACE "Enable API tracing capability" OFF) mark_as_advanced (HDF5_ENABLE_TRACE) -if (${HDF_CFG_NAME} MATCHES "Debug") +if (${HDF_CFG_NAME} MATCHES "Debug" OR ${HDF_CFG_NAME} MATCHES "Developer") # Enable instrumenting of the library's internal operations option (HDF5_ENABLE_INSTRUMENT "Instrument The library" OFF) + + # Instrumenting is enabled by default for parallel debug builds + if (HDF5_ENABLE_PARALLEL) + set (HDF5_ENABLE_INSTRUMENT ON CACHE BOOL "Instrument The library" FORCE) + endif () + if (HDF5_ENABLE_INSTRUMENT) set (H5_HAVE_INSTRUMENTED_LIBRARY 1) endif () |