blob: 92beab1c2213025eef3e56b9d4bf2db077006d94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
)
install(TARGETS kolabnowaccountplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/kolabnow)
install_qml_account(kolabnow)
|