You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1021 B
45 lines
1021 B
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
tde_import( libkmime )
|
|
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/libemailfunctions
|
|
${CMAKE_SOURCE_DIR}/libkmime
|
|
${CMAKE_SOURCE_DIR}/libtdepim
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### other data ################################
|
|
|
|
install( FILES
|
|
imap4.protocol imaps.protocol
|
|
DESTINATION ${SERVICES_INSTALL_DIR} )
|
|
|
|
|
|
##### tdeio_imap4 (module) ########################
|
|
|
|
tde_add_kpart( tdeio_imap4
|
|
SOURCES
|
|
imapcommand.cc imaplist.cc mailaddress.cc mimeheader.cc
|
|
rfcdecoder.cc imap4.cc imapinfo.cc imapparser.cc
|
|
mailheader.cc mimehdrline.cc mimeio.cc
|
|
LINK emailfunctions-static kmime-shared tdeio-shared ${SASL_LIBRARY}
|
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
|
)
|