diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
commit | b363d2579af0a11b77e698aed2e1021c2233b644 (patch) | |
tree | f4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /tderesources/groupwise/CMakeLists.txt | |
parent | 61bddfe3a7226b18c68a76124b727c736f431688 (diff) | |
download | tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tderesources/groupwise/CMakeLists.txt')
-rw-r--r-- | tderesources/groupwise/CMakeLists.txt | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/tderesources/groupwise/CMakeLists.txt b/tderesources/groupwise/CMakeLists.txt new file mode 100644 index 000000000..68c829a7b --- /dev/null +++ b/tderesources/groupwise/CMakeLists.txt @@ -0,0 +1,75 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +add_subdirectory( soap ) +add_subdirectory( kioslave ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${CMAKE_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/libtdepim + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + + +##### other data ################################ + +install( FILES kcal_groupwise.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kcal ) +install( FILES kabc_groupwise.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kabc ) + + +##### kcal_groupwise (module) ################### + +tde_add_kpart( kcal_groupwise AUTOMOC + SOURCES kcal_resourcegroupwise_plugin.cpp + LINK kcal_groupwise-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### kabc_groupwise (module) ################### + +tde_add_kpart( kabc_groupwise AUTOMOC + SOURCES kabc_resourcegroupwise_plugin.cpp + LINK kabc_groupwise-shared + DESTINATION ${PLUGIN_INSTALL_DIR} +) + + +##### kcal_groupwise (shared) ################### + +tde_add_library( kcal_groupwise SHARED AUTOMOC + SOURCES + kcal_resourcegroupwise.cpp kcal_resourcegroupwiseconfig.cpp + kcal_groupwiseprefsbase.kcfgc kcal_groupwiseprefs.cpp + groupwisesettingswidget.cpp groupwisesettingswidgetbase.ui + VERSION 1.0.0 + LINK gwsoap-shared + DESTINATION ${LIB_INSTALL_DIR} +) + + +##### kabc_groupwise (shared) ################### + +tde_add_library( kabc_groupwise SHARED AUTOMOC + SOURCES + kabc_resourcegroupwise.cpp kabc_resourcegroupwiseconfig.cpp + kabc_groupwiseprefs.kcfgc + VERSION 1.0.0 + LINK gwsoap-shared + DESTINATION ${LIB_INSTALL_DIR} +) |