Skip to content
Snippets Groups Projects
Verified Commit c992072f authored by Tobias Triffterer's avatar Tobias Triffterer :house_with_garden:
Browse files

Add Dependency on Qt5 Network Module

Managing the SSL certificates requires the class “QSslCertificate” which
is part of Qt5 Network.
parent 1a485045
No related branches found
No related tags found
No related merge requests found
Pipeline #3152 passed with stage
in 22 seconds
...@@ -43,7 +43,7 @@ endif(NOT CMAKE_CXX_STANDARD) ...@@ -43,7 +43,7 @@ endif(NOT CMAKE_CXX_STANDARD)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Find Qt # Find Qt
find_package(Qt5 COMPONENTS Core Gui Widgets DBus LinguistTools CONFIG REQUIRED) find_package(Qt5 COMPONENTS Core Gui Widgets DBus Network LinguistTools CONFIG REQUIRED)
# Instruct CMake to run moc automatically when needed. # Instruct CMake to run moc automatically when needed.
set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOMOC ON)
# Instruct CMake to run qrc automatically when needed. # Instruct CMake to run qrc automatically when needed.
...@@ -93,7 +93,7 @@ target_include_directories(fp311online PUBLIC ${CMAKE_CURRENT_BINARY_DIR} src/) ...@@ -93,7 +93,7 @@ target_include_directories(fp311online PUBLIC ${CMAKE_CURRENT_BINARY_DIR} src/)
add_dependencies(fp311online libfp311online_versioning) add_dependencies(fp311online libfp311online_versioning)
target_link_libraries(fp311online PUBLIC Qt5::Core Qt5::Gui Qt5::Widgets ROOT::Hist ROOT::HistPainter ROOT::Minuit2 ROOT::RooFit -lpthread) target_link_libraries(fp311online PUBLIC Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Network ROOT::Hist ROOT::HistPainter ROOT::Minuit2 ROOT::RooFit -lpthread)
set_property(TARGET fp311online PROPERTY POSITION_INDEPENDENT_CODE ON) set_property(TARGET fp311online PROPERTY POSITION_INDEPENDENT_CODE ON)
set_property(TARGET fp311online PROPERTY CXX_VISIBILITY_PRESET hidden) set_property(TARGET fp311online PROPERTY CXX_VISIBILITY_PRESET hidden)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment