diff options
author | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-11 20:10:09 +0000 |
---|---|---|
committer | samelian <samelian@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-03-11 20:10:09 +0000 |
commit | 0d7351b5312d68b66f0481fe22b066a60c05a23a (patch) | |
tree | 883528313a6bdfc4b9a0d57ceb4db7e1ba3cf419 /libkpimexchange | |
parent | c1edef47add41611781ac9190d2b2bc8560c5a01 (diff) | |
download | tdepim-0d7351b5312d68b66f0481fe22b066a60c05a23a.tar.gz tdepim-0d7351b5312d68b66f0481fe22b066a60c05a23a.zip |
[trinity/kdepim] initial cmake support for korganizer & dependencies
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1224515 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libkpimexchange')
-rw-r--r-- | libkpimexchange/CMakeLists.txt | 16 | ||||
-rw-r--r-- | libkpimexchange/core/CMakeLists.txt | 45 |
2 files changed, 61 insertions, 0 deletions
diff --git a/libkpimexchange/CMakeLists.txt b/libkpimexchange/CMakeLists.txt new file mode 100644 index 000000000..a97df043e --- /dev/null +++ b/libkpimexchange/CMakeLists.txt @@ -0,0 +1,16 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +project( libkpimexchange ) + +add_subdirectory( core ) + +tde_install_export( ) diff --git a/libkpimexchange/core/CMakeLists.txt b/libkpimexchange/core/CMakeLists.txt new file mode 100644 index 000000000..fde8a6b48 --- /dev/null +++ b/libkpimexchange/core/CMakeLists.txt @@ -0,0 +1,45 @@ +################################################# +# +# (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 ) +tde_import( ktnef ) +tde_import( libkcal ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libkdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### headers ################################### + +install( FILES + exchangeclient.h exchangeaccount.h + DESTINATION ${INCLUDE_INSTALL_DIR}/kdepim ) + + +##### kpimexchange (shared) ##################### + +tde_add_library( kpimexchange SHARED AUTOMOC + SOURCES + exchangeclient.cpp exchangeaccount.cpp exchangedownload.cpp exchangeupload.cpp + exchangedelete.cpp utils.cpp exchangeprogress.cpp exchangemonitor.cpp + VERSION 1.0.0 + LINK kcal-shared + DESTINATION ${LIB_INSTALL_DIR} +) |