From 6c662fcbc8bf1d5334ca6fc322521ada1b472892 Mon Sep 17 00:00:00 2001 From: Jordan Henderson Date: Fri, 27 Feb 2026 14:26:31 -0600 Subject: [PATCH] Add extra path to HDF5_PLUGIN_PATH for Windows binary testing --- 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")