1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00

Link lokinet-bootstrap against libssl as well

Just crypto apparently isn't enough, at least on some arches/distros.
This commit is contained in:
Jason Rhinelander 2021-04-19 23:45:36 -03:00
parent 869b362572
commit 73a29d3b07

View file

@ -27,7 +27,7 @@ target_link_libraries(lokinet-bootstrap PUBLIC cpr::cpr)
if(NOT WIN32)
find_package(OpenSSL REQUIRED)
# because debian sid's curl doesn't link against openssl for some godawful cursed reason
target_link_libraries(lokinet-bootstrap PUBLIC OpenSSL::Crypto)
target_link_libraries(lokinet-bootstrap PUBLIC OpenSSL::SSL OpenSSL::Crypto)
endif()
foreach(exe lokinet lokinet-vpn lokinet-bootstrap)