blob: c396b6ba190608b530b1e50542ea32785661047b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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_qml_account(maildir)
|