blob: d0e5001c317c59fd6971777aa364316465692b35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
set(accountsplugin_SRCS
accountsplugin.cpp
accountfactory.cpp
accountsmodel.cpp
)
add_library(accountsplugin SHARED ${accountsplugin_SRCS})
qt5_use_modules(accountsplugin Core Quick Qml)
target_link_libraries(accountsplugin sink mailplugin)
install(TARGETS accountsplugin DESTINATION ${FRAMEWORK_INSTALL_DIR})
|