mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 15:45:53 +00:00
25 lines
617 B
CMake
25 lines
617 B
CMake
|
add_definitions(-DTRANSLATION_DOMAIN=\"plasma_engine_soliddevice\")
|
||
|
|
||
|
set(soliddevice_engine_SRCS
|
||
|
soliddeviceengine.cpp
|
||
|
devicesignalmapper.cpp
|
||
|
devicesignalmapmanager.cpp
|
||
|
hddtemp.cpp
|
||
|
soliddeviceservice.cpp
|
||
|
soliddevicejob.cpp
|
||
|
)
|
||
|
|
||
|
kcoreaddons_add_plugin(plasma_engine_soliddevice SOURCES ${soliddevice_engine_SRCS} INSTALL_NAMESPACE plasma/dataengine)
|
||
|
|
||
|
target_link_libraries(plasma_engine_soliddevice
|
||
|
Qt::Network
|
||
|
KF5::I18n
|
||
|
KF5::KIOCore
|
||
|
KF5::Plasma
|
||
|
KF5::Solid
|
||
|
KF5::CoreAddons
|
||
|
KF5::Notifications
|
||
|
)
|
||
|
|
||
|
install(FILES soliddevice.operations DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services )
|