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
14 years ago
|
#################################################
|
||
|
#
|
||
|
# (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
|
||
13 years ago
|
${CMAKE_SOURCE_DIR}/libtdepim
|
||
14 years ago
|
${TDE_INCLUDE_DIR}
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### other data ################################
|
||
|
|
||
|
install( FILES
|
||
|
imap4.protocol imaps.protocol
|
||
|
DESTINATION ${SERVICES_INSTALL_DIR} )
|
||
|
|
||
|
|
||
12 years ago
|
##### tdeio_imap4 (module) ########################
|
||
14 years ago
|
|
||
12 years ago
|
tde_add_kpart( tdeio_imap4
|
||
14 years ago
|
SOURCES
|
||
|
imapcommand.cc imaplist.cc mailaddress.cc mimeheader.cc
|
||
|
rfcdecoder.cc imap4.cc imapinfo.cc imapparser.cc
|
||
|
mailheader.cc mimehdrline.cc mimeio.cc
|
||
12 years ago
|
LINK emailfunctions-static kmime-shared tdeio-shared ${SASL_LIBRARY}
|
||
14 years ago
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||
|
)
|