mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-14 11:15:54 +00:00
23 lines
485 B
CMake
23 lines
485 B
CMake
|
set(places_engine_SRCS
|
||
|
placesengine.cpp
|
||
|
placeservice.cpp
|
||
|
placesproxymodel.cpp
|
||
|
setupdevicejob.cpp
|
||
|
modeljob.h
|
||
|
)
|
||
|
|
||
|
set(CMAKE_AUTOMOC TRUE)
|
||
|
|
||
|
kcoreaddons_add_plugin(plasma_engine_places SOURCES ${places_engine_SRCS} INSTALL_NAMESPACE plasma/dataengine)
|
||
|
|
||
|
target_link_libraries(plasma_engine_places
|
||
|
KF5::Plasma
|
||
|
KF5::KIOCore
|
||
|
KF5::KIOFileWidgets
|
||
|
KF5::Solid
|
||
|
)
|
||
|
|
||
|
install(FILES org.kde.places.operations
|
||
|
DESTINATION ${PLASMA_DATA_INSTALL_DIR}/services )
|
||
|
|