diff options
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | synchronizer/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 71bcfbb..d049054 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -20,7 +20,7 @@ include(ECMPackageConfigHelpers) | |||
20 | include(ECMSetupVersion) | 20 | include(ECMSetupVersion) |
21 | include(KDEInstallDirs) | 21 | include(KDEInstallDirs) |
22 | 22 | ||
23 | find_package(Qt5 COMPONENTS REQUIRED Core Widgets Network) | 23 | find_package(Qt5 COMPONENTS REQUIRED Core Network) |
24 | find_package(KF5 COMPONENTS REQUIRED Async Mime) | 24 | find_package(KF5 COMPONENTS REQUIRED Async Mime) |
25 | find_package(FlatBuffers REQUIRED) | 25 | find_package(FlatBuffers REQUIRED) |
26 | 26 | ||
diff --git a/synchronizer/CMakeLists.txt b/synchronizer/CMakeLists.txt index 88d50d0..b2bde55 100644 --- a/synchronizer/CMakeLists.txt +++ b/synchronizer/CMakeLists.txt | |||
@@ -8,5 +8,5 @@ set(sinksynchronizer_SRCS | |||
8 | 8 | ||
9 | add_executable(${PROJECT_NAME} ${sinksynchronizer_SRCS}) | 9 | add_executable(${PROJECT_NAME} ${sinksynchronizer_SRCS}) |
10 | target_link_libraries(${PROJECT_NAME} sink KF5::Async dl) | 10 | target_link_libraries(${PROJECT_NAME} sink KF5::Async dl) |
11 | qt5_use_modules(${PROJECT_NAME} Widgets Network) | 11 | qt5_use_modules(${PROJECT_NAME} Network) |
12 | install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) | 12 | install(TARGETS ${PROJECT_NAME} ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) |