From abf1fbaf2416ca2d0914e49d349fcff65644f104 Mon Sep 17 00:00:00 2001 From: jhendersonHDF Date: Fri, 27 Feb 2026 14:46:04 -0600 Subject: [PATCH] Add extra path to HDF5_PLUGIN_PATH for Windows binary testing (#227) --- config/cmake/binex/example/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/config/cmake/binex/example/CMakeLists.txt b/config/cmake/binex/example/CMakeLists.txt index 1314367f8..f18ca5158 100644 --- a/config/cmake/binex/example/CMakeLists.txt +++ b/config/cmake/binex/example/CMakeLists.txt @@ -72,6 +72,7 @@ if (H5PL_BUILD_TESTING) # Unix/Mac: HDF5/share/HDFPLExamples/example -> ../../../lib/plugin if (WIN32) set (_plugin_path "${PROJECT_SOURCE_DIR}/../../lib/plugin") + set (_plugin_path "${_plugin_path}:${PROJECT_SOURCE_DIR}/../../plugin") else () set (_plugin_path "${PROJECT_SOURCE_DIR}/../../../lib/plugin") set (_plugin_path "${_plugin_path}:${PROJECT_SOURCE_DIR}/../../../lib64/plugin")