summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2019-09-05 14:50:42 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2019-09-05 14:50:42 (GMT)
commita88f98ae8250972d230c43ba64d49efde8ae9561 (patch)
tree9c0ed931914a04e1626ac95dd6f5da00474fe3ca /config
parent1ca73845326ab5ab4f63f684babe3549e1c90e63 (diff)
downloadhdf5-a88f98ae8250972d230c43ba64d49efde8ae9561.zip
hdf5-a88f98ae8250972d230c43ba64d49efde8ae9561.tar.gz
hdf5-a88f98ae8250972d230c43ba64d49efde8ae9561.tar.bz2
special windows override
Diffstat (limited to 'config')
-rw-r--r--config/cmake/ConfigureChecks.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/cmake/ConfigureChecks.cmake b/config/cmake/ConfigureChecks.cmake
index cb1eb48..24947f2 100644
--- a/config/cmake/ConfigureChecks.cmake
+++ b/config/cmake/ConfigureChecks.cmake
@@ -159,6 +159,9 @@ endif ()
#-----------------------------------------------------------------------------
option (HDF5_ENABLE_ROS3_VFD "Build the ROS3 Virtual File Driver" OFF)
if (HDF5_ENABLE_ROS3_VFD)
+ if (WIN32)
+ set(CURL_LIBRARY "-lcurl")
+ endif ()
find_package(CURL REQUIRED)
find_package(OpenSSL REQUIRED)
if (${CURL_FOUND} AND ${OPENSSL_FOUND})