blob: 42b50899439179c74f338d6614c841086a10bf67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
project(kube-accounts-imap)
cmake_minimum_required(VERSION 2.8.12)
include(CPack)
include(FeatureSummary)
find_package(PkgConfig)
################# set KDE specific information #################
find_package(ECM 0.0.8 REQUIRED NO_MODULE)
# where to look first for cmake modules, before ${CMAKE_ROOT}/Modules/ is checked
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR})
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDECompilerSettings)
find_package(Qt5 REQUIRED NO_MODULE COMPONENTS Core Quick Test Gui)
set (QT_MIN_VERSION "5.4.0")
find_package(Sink CONFIG REQUIRED)
find_package(KF5Async CONFIG REQUIRED)
find_package(KF5 REQUIRED COMPONENTS Package Mime)
include_directories(SYSTEM ${KDE_INSTALL_FULL_INCLUDEDIR}/KF5/)
#FIXME
include_directories(../../framework/)
set(SRCS
imapsettings.cpp
imapaccountplugin.cpp
)
add_library(imapaccountplugin SHARED ${SRCS})
qt5_use_modules(imapaccountplugin Core Quick Qml)
target_link_libraries(imapaccountplugin sink settingsplugin mailplugin)
add_library(imapaccount_static STATIC ${SRCS})
qt5_use_modules(imapaccount_static Core Quick Qml)
target_link_libraries(imapaccount_static sink settingsplugin mailplugin)
add_subdirectory(tests)
kpackage_install_package(package org.kube.accounts.imap "genericqml")
install(TARGETS imapaccountplugin DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/imap)
install(FILES qmldir DESTINATION ${QML_INSTALL_DIR}/org/kube/accounts/imap)
|