16 lines
572 B
Diff
16 lines
572 B
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index a4c01b3ab..c0b0a7973 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -849,7 +849,9 @@ else()
|
|
${DBUS_FILES}
|
|
${DBUS_ADAPTOR_FILES}
|
|
)
|
|
- target_link_libraries(jamid ${PROJECT_NAME} PkgConfig::DBusCpp)
|
|
+ find_package(OpenSSL REQUIRED)
|
|
+ find_package(ZLIB REQUIRED)
|
|
+ target_link_libraries(jamid ${PROJECT_NAME} PkgConfig::DBusCpp OpenSSL::SSL OpenSSL::Crypto ZLIB::ZLIB)
|
|
install (TARGETS jamid DESTINATION ${CMAKE_INSTALL_LIBEXECDIR})
|
|
endif()
|
|
|