kwin/src/effects/highlightwindow/CMakeLists.txt
Vlad Zahorodnii e1024d38d1 cmake: Specify link libraries per effect target
This allows to track per effect dependencies more precisely. The main
problem with a library and a comment next to it saying who needs it is
that the comment can get easily outdated.
2022-02-15 07:21:28 +00:00

15 lines
305 B
CMake

#######################################
# Effect
# Source files
set(highlightwindow_SOURCES
highlightwindow.cpp
main.cpp
)
kwin4_add_effect_module(kwin4_effect_highlightwindow ${highlightwindow_SOURCES})
target_link_libraries(kwin4_effect_highlightwindow PRIVATE
kwineffects
Qt::DBus
)