diff options
author | Allen Byrne <50328838+byrnHDF@users.noreply.github.com> | 2023-03-13 21:24:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 21:24:49 (GMT) |
commit | cb679af19d170982f522f57beaf72888da324105 (patch) | |
tree | fbefdae6dafa450fe799841c1c881b813569fcf0 /tools/test/h5dump | |
parent | 3d8dc012a4353336652479541388b8530accb11c (diff) | |
download | hdf5-cb679af19d170982f522f57beaf72888da324105.zip hdf5-cb679af19d170982f522f57beaf72888da324105.tar.gz hdf5-cb679af19d170982f522f57beaf72888da324105.tar.bz2 |
Make sure that ONLY_SHARED_LIBS option is correctly set (#2544)
Diffstat (limited to 'tools/test/h5dump')
-rw-r--r-- | tools/test/h5dump/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/h5dump/CMakeLists.txt b/tools/test/h5dump/CMakeLists.txt index 4367fed..95f690f 100644 --- a/tools/test/h5dump/CMakeLists.txt +++ b/tools/test/h5dump/CMakeLists.txt @@ -40,7 +40,7 @@ endif () # -------------------------------------------------------------------- # Add the h5dump test executable # -------------------------------------------------------------------- -if (HDF5_BUILD_GENERATORS AND NOT ONLY_SHARED_LIBS) +if (HDF5_BUILD_GENERATORS AND BUILD_STATIC_LIBS) add_executable (h5dumpgentest ${HDF5_TOOLS_TEST_H5DUMP_SOURCE_DIR}/h5dumpgentest.c) target_include_directories (h5dumpgentest PRIVATE "${HDF5_SRC_INCLUDE_DIRS};${HDF5_TEST_SRC_DIR};${HDF5_SRC_BINARY_DIR};$<$<BOOL:${HDF5_ENABLE_PARALLEL}>:${MPI_C_INCLUDE_DIRS}>") TARGET_C_PROPERTIES (h5dumpgentest STATIC) |