Browse Source
fix openssl
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/3003/head
crueter
3 months ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
2 changed files with
2 additions and
2 deletions
-
src/frontend_common/CMakeLists.txt
-
src/qt_common/CMakeLists.txt
|
|
|
@ -25,7 +25,7 @@ if (ENABLE_UPDATE_CHECKER) |
|
|
|
|
|
|
|
if (ENABLE_OPENSSL) |
|
|
|
target_compile_definitions(frontend_common PRIVATE CPPHTTPLIB_OPENSSL_SUPPORT) |
|
|
|
target_link_libraries(frontend_common PRIVATE OpenSSL::SSL) |
|
|
|
target_link_libraries(frontend_common PRIVATE OpenSSL::SSL OpenSSL::Crypto) |
|
|
|
endif() |
|
|
|
|
|
|
|
endif() |
|
|
|
|
|
|
|
@ -43,7 +43,7 @@ if (USE_DISCORD_PRESENCE) |
|
|
|
) |
|
|
|
target_link_libraries(qt_common PUBLIC DiscordRPC::discord-rpc httplib::httplib) |
|
|
|
if (YUZU_USE_BUNDLED_OPENSSL) |
|
|
|
target_link_libraries(qt_common PUBLIC OpenSSL::SSL) |
|
|
|
target_link_libraries(qt_common PUBLIC OpenSSL::SSL OpenSSL::Crypto) |
|
|
|
target_compile_definitions(qt_common PRIVATE CPPHTTPLIB_OPENSSL_SUPPORT) |
|
|
|
endif() |
|
|
|
target_compile_definitions(qt_common PUBLIC USE_DISCORD_PRESENCE) |
|
|
|
|