Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmake/FDBComponents.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ set(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR})
# Statically link OpenSSL to FDB, see
# https://cmake.org/cmake/help/v3.24/module/FindOpenSSL.html
# Without the flags, OpenSSL is dynamically linked.
set(OPENSSL_USE_STATIC_LIBS TRUE)
# For FIPS compliance, we need to use the OpenSSL from the container
# that is FIPS compliant.
# set(OPENSSL_USE_STATIC_LIBS TRUE)
if (WIN32)
set(OPENSSL_MSVC_STATIC_RT ON)
endif()
Expand Down Expand Up @@ -187,7 +189,7 @@ if(toml11_FOUND)
add_library(toml11_target INTERFACE)
target_link_libraries(toml11_target INTERFACE toml11::toml11)
else()
include(ExternalProject)
include(ExternalProject)
ExternalProject_add(toml11Project
URL "https://github.com/ToruNiina/toml11/archive/v3.4.0.tar.gz"
URL_HASH SHA256=bc6d733efd9216af8c119d8ac64a805578c79cc82b813e4d1d880ca128bd154d
Expand Down