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.
78 lines
2.0 KiB
78 lines
2.0 KiB
14 years ago
|
#################################################
|
||
|
#
|
||
|
# (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}
|
||
13 years ago
|
${CMAKE_SOURCE_DIR}/libtdepim
|
||
14 years ago
|
${TDE_INCLUDE_DIR}
|
||
|
${TQT_INCLUDE_DIRS}
|
||
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### other data ################################
|
||
|
|
||
12 years ago
|
install( FILES kcal_groupdav.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kcal )
|
||
|
install( FILES uninstall.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kcal RENAME kcal_opengroupware.desktop )
|
||
|
install( FILES kabc_groupdav.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kabc )
|
||
|
install( FILES uninstall.desktop DESTINATION ${SERVICES_INSTALL_DIR}/tderesources/kabc RENAME kabc_opengroupware.desktop)
|
||
14 years ago
|
|
||
|
|
||
|
##### kcal_groupdav (module) ####################
|
||
|
|
||
|
tde_add_kpart( kcal_groupdav AUTOMOC
|
||
|
SOURCES kcal_resourcegroupdav_plugin.cpp
|
||
|
LINK kcal_groupdav-shared
|
||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### kabc_groupdav (module) ####################
|
||
|
|
||
|
tde_add_kpart( kabc_groupdav AUTOMOC
|
||
|
SOURCES kabc_resourcegroupdav_plugin.cpp
|
||
|
LINK kabc_groupdav-shared
|
||
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### kgroupdav (static) ########################
|
||
|
|
||
|
tde_add_library( kgroupdav STATIC_PIC
|
||
|
SOURCES groupdavglobals.cpp
|
||
|
)
|
||
|
|
||
|
|
||
|
##### kcal_groupdav (shared) ####################
|
||
|
|
||
|
tde_add_library( kcal_groupdav SHARED AUTOMOC
|
||
|
SOURCES groupdavcalendaradaptor.cpp kcal_resourcegroupdav.cpp
|
||
|
VERSION 1.0.0
|
||
|
LINK kgroupdav-static kgroupwaredav-shared
|
||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### kabc_groupdav (shared) ####################
|
||
|
|
||
|
tde_add_library( kabc_groupdav SHARED AUTOMOC
|
||
|
SOURCES kabc_resourcegroupdav.cpp groupdavaddressbookadaptor.cpp
|
||
|
VERSION 1.0.0
|
||
|
LINK kgroupdav-static kgroupwaredav-shared
|
||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||
|
)
|