kde-playground/kdepimlibs/akonadi/calendar/CMakeLists.txt
2015-09-23 09:35:50 +00:00

111 lines
3.2 KiB
CMake

include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
)
# TODO: Add a cmake option for this and enable it on jenkins
set( PLEASE_TEST_INVITATIONS FALSE)
if ( PLEASE_TEST_INVITATIONS )
add_definitions( -DPLEASE_TEST_INVITATIONS )
endif()
add_subdirectory( tests )
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${KDE4_ENABLE_EXCEPTIONS}")
remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_NO_CAST_TO_ASCII)
set(akonadicalendar_LIB_SRC
blockalarmsattribute.cpp
calendarbase.cpp
calendarclipboard.cpp
calendarmodel.cpp
calfilterproxymodel_p.cpp
etmcalendar.cpp
history.cpp
history_p.cpp
icalimporter.cpp
incidencefetchjob_p.cpp
incidencechanger.cpp
incidencechanger_p.cpp
itiphandler.cpp
itiphandler_p.cpp
itiphandlerhelper_p.cpp
kcolumnfilterproxymodel.cpp
fetchjobcalendar.cpp
freebusydownloadjob_p.cpp
freebusymanager.cpp
freebusyproviderbase.cpp
mailclient_p.cpp
mailscheduler_p.cpp
publishdialog.cpp
publishdialog_p.cpp
scheduler_p.cpp
standardcalendaractionmanager.cpp
todopurger.cpp
utils_p.cpp
)
include_directories(
${CMAKE_BINARY_DIR}/kpimutils
${CMAKE_BINARY_DIR}/kmime
${CMAKE_BINARY_DIR}/kcalcore
${CMAKE_BINARY_DIR}/kcalutils
${CMAKE_BINARY_DIR}/akonadi
${CMAKE_BINARY_DIR}/mailtransport
${CMAKE_BINARY_DIR}/kpimidentities
${CMAKE_BINARY_DIR}/akonadi/contact
${CMAKE_BINARY_DIR}/akonadi/kmime
${CMAKE_BINARY_DIR}/kabc
)
kde4_add_kcfg_files(akonadicalendar_LIB_SRC calendarsettings.kcfgc)
qt4_add_dbus_adaptor( akonadicalendar_LIB_SRC ../interfaces/org.freedesktop.Akonadi.Resource.FreeBusyProvider.xml freebusyproviderbase_p.h Akonadi::FreeBusyProviderBasePrivate freebusyprovideradaptor Akonadi__FreeBusyProviderAdaptor )
add_library(akonadi-calendar ${LIBRARY_TYPE} ${akonadicalendar_LIB_SRC})
if(CMAKE_MINIMUM_REQUIRED_VERSION VERSION_LESS 2.8.12)
set_property(TARGET akonadi-calendar PROPERTY DEFINE_SYMBOL akonadi_calendar)
endif()
generate_export_header(akonadi-calendar
BASE_NAME akonadi_calendar
EXPORT_FILE_NAME akonadi-calendar_export.h
)
target_link_libraries(akonadi-calendar
akonadi-contact
akonadi-kmime
akonadi-kde
kpimidentities
kpimutils
kcalcore
kcalutils
kmime
mailtransport
${KDE4_KDEUI_LIBS}
${KDE4_KIO_LIBS}
${KDE4_PHONON_LIBS})
set_target_properties(akonadi-calendar PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION})
install(TARGETS akonadi-calendar EXPORT kdepimlibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS})
install( FILES
${CMAKE_CURRENT_BINARY_DIR}/akonadi-calendar_export.h
blockalarmsattribute.h
calendarbase.h
calendarclipboard.h
etmcalendar.h
history.h
icalimporter.h
incidencechanger.h
itiphandler.h
fetchjobcalendar.h
freebusymanager.h
freebusyproviderbase.h
publishdialog.h
standardcalendaractionmanager.h
todopurger.h
${CMAKE_CURRENT_BINARY_DIR}/calendarsettings.h
DESTINATION ${INCLUDE_INSTALL_DIR}/akonadi/calendar COMPONENT Devel
)