blob: 76ae2c2310a3928da9c8fccd05390149de29c9bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
project(kube-accounts-maildir)
set(SRCS
maildirsettings.cpp
maildiraccountplugin.cpp
)
add_library(maildiraccountplugin SHARED ${SRCS})
target_link_libraries(maildiraccountplugin
sink
frameworkplugin
Qt5::Core
Qt5::Quick
Qt5::Qml
)
install(TARGETS maildiraccountplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/maildir)
install(FILES metadata.json DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/maildir)
install_qml_account(maildir)
|