kdeconnect-kde/plugins/runcommand/CMakeLists.txt
Łukasz Patron 5b17aa2806 Add Qt::DBus dependency to kdeconnect_runcommand_config
It seems like we now have to explicitly do that for Windows, as
otherwise, build fails when including <dbushelper.h>.

(cherry picked from commit 7d3c37d3e6)
2024-05-29 01:33:51 +02:00

17 lines
453 B
CMake

kdeconnect_add_plugin(kdeconnect_runcommand SOURCES runcommandplugin.cpp)
target_link_libraries(kdeconnect_runcommand
kdeconnectcore
Qt::DBus
KF6::KCMUtils
KF6::I18n)
#----------------------
kdeconnect_add_kcm(kdeconnect_runcommand_config SOURCES runcommand_config.cpp)
target_link_libraries(kdeconnect_runcommand_config
kdeconnectcore
kdeconnectpluginkcm
Qt::DBus
KF6::I18n
KF6::CoreAddons
KF6::ConfigWidgets
)