summaryrefslogtreecommitdiffstats
path: root/CMakePlugins.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-10-18 19:46:29 (GMT)
committerGitHub <noreply@github.com>2023-10-18 19:46:29 (GMT)
commit14a2c9eb12b11e6f297aa48edc7b47c485a99429 (patch)
tree78f8bffa4d4b769f73e08e4be95da2fe20d78edf /CMakePlugins.cmake
parent4a028905e48a40ac50442e1185e5ddff5a704ce3 (diff)
downloadhdf5-14a2c9eb12b11e6f297aa48edc7b47c485a99429.zip
hdf5-14a2c9eb12b11e6f297aa48edc7b47c485a99429.tar.gz
hdf5-14a2c9eb12b11e6f297aa48edc7b47c485a99429.tar.bz2
Cache variables req FORCE to change (#3707)
* Cache variables req FORCE to change * Also plugin needs FORCE
Diffstat (limited to 'CMakePlugins.cmake')
-rw-r--r--CMakePlugins.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakePlugins.cmake b/CMakePlugins.cmake
index bc1074f..7fd332a 100644
--- a/CMakePlugins.cmake
+++ b/CMakePlugins.cmake
@@ -26,7 +26,7 @@ include (ExternalProject)
set (HDF5_ALLOW_EXTERNAL_SUPPORT "NO" CACHE STRING "Allow External Library Building (NO GIT TGZ)")
set_property (CACHE HDF5_ALLOW_EXTERNAL_SUPPORT PROPERTY STRINGS NO GIT TGZ)
if (HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT" OR HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "TGZ")
- set (PLUGIN_USE_EXTERNAL ON CACHE BOOL "Use External Library Building for PLUGIN")
+ set (PLUGIN_USE_EXTERNAL ON CACHE BOOL "Use External Library Building for PLUGIN" FORCE)
if (HDF5_ALLOW_EXTERNAL_SUPPORT MATCHES "GIT")
set (PLUGIN_URL ${PLUGIN_GIT_URL} CACHE STRING "Path to PLUGIN git repository")
set (PLUGIN_BRANCH ${PLUGIN_GIT_BRANCH})