-
-
Notifications
You must be signed in to change notification settings - Fork 298
Remove private headers from list of headers installed #5609
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
src/H5FDsubfiling/CMakeLists.txt
Outdated
@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.18) | |||
project (HDF5_H5FD_SUBFILING C) | |||
|
|||
# Sanity checking | |||
if (NOT H5FD_HDRS) | |||
if (NOT H5FD_PUBLIC_HDRS) | |||
message (FATAL_ERROR "internal configure error - H5FD_HDRS not set") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor - H5FD_HDRS
-> H5FD_PUBLIC_HDRS
${HDF5_SRC_DIR}/H5FDonion_index.h | ||
${HDF5_SRC_DIR}/H5FDonion_priv.h | ||
${HDF5_SRC_DIR}/H5FDpkg.h | ||
${HDF5_SRC_DIR}/H5FDprivate.h |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
May need another review of all the headers, as this list should probably also include H5FDmulti_private.h
, H5FDros3_s3comms.h
, H5FDstdio_private.h
and more. This is one of the reasons I think at least each file driver should be put in its own sub-directory to make this a bit more clear.
src/CMakeLists.txt
Outdated
${HDF5_SRC_DIR}/H5FDpkg.h | ||
${HDF5_SRC_DIR}/H5FDprivate.h | ||
${HDF5_SRC_DIR}/H5FDros3_s3comms.h | ||
${HDF5_SRC_DIR}/H5FDstdio_int.h |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This header file doesn't exist; just needs to be removed
Fixes #5501