blob: fd16853769593606dd2717107ddd5c7fe4d9d8e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
project(kube-accounts-kolabnow)
set(SRCS
kolabnowsettings.cpp
kolabnowaccountplugin.cpp
)
add_library(kolabnowaccountplugin SHARED ${SRCS})
target_link_libraries(kolabnowaccountplugin
sink
frameworkplugin
Qt5::Core
Qt5::Quick
Qt5::Qml
)
kpackage_install_package(package org.kube.accounts.kolabnow "genericqml")
install(TARGETS kolabnowaccountplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/kolabnow)
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/kolabnow)
|