Skip to content

Commit

Permalink
fix: remove unused dependencies from CMakeLists.txt
Browse files Browse the repository at this point in the history
They are not in use.
  • Loading branch information
felixonmars authored Sep 19, 2023
1 parent 61c811d commit 8438016
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ find_package(QtWaylandScanner REQUIRED)

find_package(KF5 ${KF5_MIN_VERSION} REQUIRED
I18n
Declarative
Notifications
)

Expand All @@ -22,9 +21,6 @@ find_package(KF5I18n CONFIG REQUIRED)
find_package(Wayland 1.15 REQUIRED COMPONENTS Client)
find_package(PkgConfig)

pkg_search_module(EPOXY REQUIRED epoxy)
pkg_search_module(GBM REQUIRED gbm)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set_source_files_properties(
Expand Down Expand Up @@ -119,8 +115,6 @@ target_link_libraries(${PROJECT_NAME} PUBLIC
KF5::I18n
DWaylandClient
KF5::Notifications
Wayland::Client
${EPOXY_LIBRARIES}
${GBM_LIBRARIES})
Wayland::Client)

install(TARGETS ${PROJECT_NAME} DESTINATION ${CMAKE_INSTALL_LIBEXECDIR})

0 comments on commit 8438016

Please sign in to comment.