mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 07:35:54 +00:00
24 lines
616 B
CMake
24 lines
616 B
CMake
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_engine_hotplug\")
|
|
|
|
set(hotplug_engine_SRCS
|
|
deviceaction.cpp
|
|
deviceserviceaction.cpp
|
|
hotplugengine.cpp
|
|
hotplugservice.cpp
|
|
hotplugjob.cpp
|
|
)
|
|
|
|
kcoreaddons_add_plugin(plasma_engine_hotplug SOURCES ${hotplug_engine_SRCS} INSTALL_NAMESPACE plasma/dataengine)
|
|
target_link_libraries(plasma_engine_hotplug
|
|
KF5::CoreAddons
|
|
KF5::Plasma
|
|
KF5::Solid
|
|
KF5::Service
|
|
KF5::KIOCore
|
|
KF5::KIOWidgets # KDesktopFileActions
|
|
KF5::Notifications
|
|
KF5::I18n
|
|
)
|
|
|
|
install(FILES hotplug.operations DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services)
|