Merge pull request #738 from DanielSvoboda/Fix-download-Cheats/Patches-on-Linux
Some checks are pending
Reuse / reuse (push) Waiting to run
Clang Format / clang-format (push) Waiting to run
Linux-Qt / build (push) Waiting to run
Linux / build (push) Waiting to run
macOS-Qt / build (push) Waiting to run
macOS / build (push) Waiting to run
Windows-Qt / build (push) Waiting to run
Windows / build (push) Waiting to run

Fix download Cheats/Patches on Linux
This commit is contained in:
georgemoralis 2024-09-03 16:16:37 +03:00 committed by GitHub
commit a1377029cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -743,3 +743,10 @@ if (ENABLE_QT_GUI)
set_source_files_properties(src/images/shadPS4.icns PROPERTIES
MACOSX_PACKAGE_LOCATION Resources)
endif()
if (UNIX AND NOT APPLE)
if (ENABLE_QT_GUI)
find_package(OpenSSL REQUIRED)
target_link_libraries(shadps4 PRIVATE ${OPENSSL_LIBRARIES})
endif()
endif()