diff options
-rw-r--r-- | ui/qt5/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/qt5/CMakeLists.txt b/ui/qt5/CMakeLists.txt index a138f07..e94e5b9 100644 --- a/ui/qt5/CMakeLists.txt +++ b/ui/qt5/CMakeLists.txt @@ -63,9 +63,10 @@ IF(UNSUPPORTED_NONFREE_FIRMWARE) LIST(APPEND UI_SOURCES firmwarepage.cc) ENDIF(UNSUPPORTED_NONFREE_FIRMWARE) +find_package(OpenSSL REQUIRED COMPONENTS Crypto) include_directories(${CMAKE_SOURCE_DIR}/3rdparty) add_executable(horizon-qt5 ${UI_SOURCES}) -target_link_libraries(horizon-qt5 Qt5::Network Qt5::Widgets crypto) +target_link_libraries(horizon-qt5 Qt5::Network Qt5::Widgets OpenSSL::Crypto) IF("cxx_std_17" IN_LIST CMAKE_CXX_COMPILE_FEATURES) set_property(TARGET horizon-qt5 PROPERTY CXX_STANDARD 17) |