-
-
Notifications
You must be signed in to change notification settings - Fork 277
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
Fix plugin cache variable name #2988
Conversation
config/cmake/HDF5PluginCache.cmake
Outdated
@@ -8,7 +8,7 @@ | |||
set (H5PL_BUILD_TESTING ON CACHE BOOL "Enable H5PL testing" FORCE) | |||
set (BUILD_EXAMPLES ON CACHE BOOL "Build H5PL Examples" FORCE) | |||
|
|||
set (HDF5_HDF5_HEADER "H5pubconf.h" CACHE STRING "Name of HDF5 header" FORCE) | |||
set (H5PL_HDF5_HEADER "H5pubconf.h" CACHE STRING "Name of HDF5 header" FORCE) | |||
set (HDF5_LINK_LIBS ${HDF5_LIBSH_TARGET} CACHE STRING "HDF5 target" FORCE) |
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.
I think this one also needs to be updated if I understand correctly.
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.
Maybe, I need to see where that is used but most likely it needs to be prefixed with "H5PL_"
Requires change in plugins project also