We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4174b12 commit c4efb56Copy full SHA for c4efb56
apps/db_dump/CMakeLists.txt
@@ -26,8 +26,13 @@ target_include_directories(mosquitto_db_dump PRIVATE
26
"${mosquitto_SOURCE_DIR}/include"
27
"${mosquitto_SOURCE_DIR}/lib"
28
"${mosquitto_SOURCE_DIR}/src"
29
+ "${OPENSSL_INCLUDE_DIR}"
30
)
31
32
+if(WITH_TLS)
33
+ target_link_libraries(mosquitto_db_dump PRIVATE config-header OpenSSL::SSL)
34
+endif()
35
+
36
install(TARGETS mosquitto_db_dump
37
RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}"
38
0 commit comments