e1024d38d1
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.
15 lines
305 B
CMake
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
|
|
)
|