set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}" )

add_definitions(-DKDE_DEFAULT_DEBUG_AREA=5300)

add_subdirectory(tests)

include_directories( ${Boost_INCLUDE_DIR} 
                     ${SOPRANO_INCLUDE_DIR}
                   )

########### next target ###############

set(messagecore_LIB_SRCS

   asyncnepomukresourceretriever.cpp
   attachmentcollector.cpp
   imagecollector.cpp
   attachmentcompressjob.cpp
   attachmentfromfolderjob.cpp
   attachmentfrommimecontentjob.cpp
   attachmentfromurlbasejob.cpp
   attachmentfromurljob.cpp
   attachmentloadjob.cpp
   attachmentpart.cpp
   attachmentpropertiesdialog.cpp
   emailaddressrequester.cpp
   globalsettings.cpp
   mailinglist.cpp
   mdnstateattribute.cpp
   messagehelpers.cpp
   nodehelper.cpp
   stringutil.cpp
   taglistmonitor.cpp
)

if (NOT WINCE)
  set(messagecore_LIB_SRCS
     ${messagecore_LIB_SRCS}
     annotationdialog.cpp
  )
endif (NOT WINCE)

kde4_add_kcfg_files(messagecore_LIB_SRCS
  globalsettings_base.kcfgc
)

kde4_add_ui_files(messagecore_LIB_SRCS
  attachmentpropertiesdialog.ui
)

kde4_add_library(messagecore ${LIBRARY_TYPE} ${messagecore_LIB_SRCS})

target_link_libraries(messagecore
  ${KDEPIMLIBS_KMIME_LIBS}
  ${KDE4_KDEUI_LIBS}
  ${KDE4_KIO_LIBS}
  ${KDEPIMLIBS_KABC_LIBS}
  ${KDEPIMLIBS_KPIMUTILS_LIBS}
  ${KDEPIMLIBS_AKONADI_LIBS}
  ${KDEPIMLIBS_KPIMTEXTEDIT_LIBS}
  ${KDEPIMLIBS_AKONADI_CONTACT_LIBS}
  ${KDEPIMLIBS_AKONADI_KMIME_LIBS}
)

if(NOT KDEPIM_NO_NEPOMUK)
target_link_libraries(messagecore
  ${NEPOMUK_LIBRARIES}
)
endif(NOT KDEPIM_NO_NEPOMUK)

target_link_libraries(messagecore LINK_INTERFACE_LIBRARIES
  ${KDEPIMLIBS_KMIME_LIBS}
  ${KDE4_KDEUI_LIBS}
  ${KDE4_KIO_LIBS}
)

set_target_properties(messagecore PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
install(TARGETS messagecore ${INSTALL_TARGETS_DEFAULT_ARGS})
