Add OpenSSL::Crypto as a dependency for wxdata

This commit is contained in:
Dan Paulat 2025-01-06 06:14:09 +00:00
parent 517013633d
commit f156716173

View file

@ -5,6 +5,7 @@ project(scwx-data)
find_package(Boost) find_package(Boost)
find_package(cpr) find_package(cpr)
find_package(LibXml2) find_package(LibXml2)
find_package(OpenSSL)
find_package(re2) find_package(re2)
find_package(spdlog) find_package(spdlog)
@ -291,6 +292,7 @@ target_link_libraries(wxdata PUBLIC aws-cpp-sdk-core
aws-cpp-sdk-s3 aws-cpp-sdk-s3
cpr::cpr cpr::cpr
LibXml2::LibXml2 LibXml2::LibXml2
OpenSSL::Crypto
re2::re2 re2::re2
spdlog::spdlog spdlog::spdlog
units::units) units::units)