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.
49 lines
1.1 KiB
49 lines
1.1 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
# FIXME need some configure checks
|
|
|
|
project( libkmime )
|
|
|
|
include( ConfigureChecks.cmake )
|
|
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_SOURCE_DIR}/libkdepim
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### kmime (shared) ############################
|
|
|
|
tde_add_library( kmime SHARED
|
|
SOURCES
|
|
kmime_charfreq.cpp kmime_util.cpp kmime_mdn.cpp
|
|
kmime_codecs.cpp kmime_codec_base64.cpp kmime_codec_uuencode.cpp
|
|
kmime_codec_qp.cpp kmime_codec_identity.cpp kmime_parsers.cpp
|
|
kmime_header_parsing.cpp kmime_content.cpp kmime_headers.cpp
|
|
kmime_message.cpp kmime_newsarticle.cpp boolflags.cpp
|
|
kqcstringsplitter.cpp
|
|
VERSION 2.2.0
|
|
LINK kdecore-shared
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
)
|
|
|
|
|
|
##### install import cmake modules ###############
|
|
|
|
tde_install_export( )
|