diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-21 00:29:04 +0000 |
commit | f5b07a4a12d57d28dee8662d296dd400d26ba7fe (patch) | |
tree | 24b4c61a0576f1c5d3571cc8d6c81262e6171227 /kresources/newexchange | |
parent | 6bab61d816e8321b2d66a7183af04269a832ea81 (diff) | |
download | tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.tar.gz tdepim-f5b07a4a12d57d28dee8662d296dd400d26ba7fe.zip |
[kdepim] initial cmake support for: knotes, kode, korganizer, kresources, plugins, wizards
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1225440 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources/newexchange')
-rw-r--r-- | kresources/newexchange/CMakeLists.txt | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/kresources/newexchange/CMakeLists.txt b/kresources/newexchange/CMakeLists.txt new file mode 100644 index 000000000..325daa72f --- /dev/null +++ b/kresources/newexchange/CMakeLists.txt @@ -0,0 +1,79 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR}/../lib + ${CMAKE_CURRENT_SOURCE_DIR}/../lib + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libkdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kcal_newexchange.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kresources/kcal ) +install( FILES kabc_newexchange.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kresources/kabc ) + + +##### kcal_newexchange (module) ################# + +tde_add_kpart( kcal_newexchange AUTOMOC + SOURCES kcal_resourceexchange_plugin.cpp + LINK kcal_newexchange-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### kabc_newexchange (module) ################# + +tde_add_kpart( kabc_newexchange AUTOMOC + SOURCES kabc_resourceexchange_plugin.cpp + LINK kabc_newexchange-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### knewexchange (static) ##################### + +tde_add_library( knewexchange STATIC_PIC + SOURCES + exchangeglobals.cpp exchangeconvertercalendar.cpp + exchangeconvertercontact.cpp +) + + +##### kcal_newexchange (shared) ################# + +tde_add_library( kcal_newexchange SHARED AUTOMOC + SOURCES + exchangecalendaradaptor.cpp kcal_resourceexchange.cpp + VERSION 1.0.0 + LINK knewexchange-static kgroupwaredav-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### kabc_newexchange (shared) ################# + +tde_add_library( kabc_newexchange SHARED AUTOMOC + SOURCES + exchangeaddressbookadaptor.cpp kabc_resourceexchange.cpp + VERSION 1.0.0 + LINK knewexchange-static kgroupwaredav-shared + DESTINATION ${LIB_INSTALL_DIR} +) |