Integrates with the GNOME Online Accounts service. Creates Evolution sources for a GOA Google account and keeps them synchronized. Also registers a new CamelSaslXOAuth class for use with GMail. Authentication of Google Calendars and Google Contacts using OAuth is still under development.
33 lines
960 B
Makefile
33 lines
960 B
Makefile
module_LTLIBRARIES = libevolution-module-online-accounts.la
|
|
|
|
libevolution_module_online_accounts_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-DG_LOG_DOMAIN=\"evolution-online-accounts\" \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(EVOLUTION_ADDRESSBOOK_CFLAGS) \
|
|
$(EVOLUTION_CALENDAR_CFLAGS) \
|
|
$(EVOLUTION_MAIL_CFLAGS) \
|
|
$(GOA_CFLAGS)
|
|
|
|
libevolution_module_online_accounts_la_SOURCES = \
|
|
evolution-online-accounts.c \
|
|
e-online-accounts-google.c \
|
|
e-online-accounts-google.h \
|
|
camel-sasl-xoauth.c \
|
|
camel-sasl-xoauth.h
|
|
|
|
libevolution_module_online_accounts_la_LIBADD = \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/shell/libeshell.la \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(EVOLUTION_ADDRESSBOOK_LIBS) \
|
|
$(EVOLUTION_CALENDAR_LIBS) \
|
|
$(EVOLUTION_MAIL_LIBS) \
|
|
$(GOA_LIBS)
|
|
|
|
libevolution_module_online_accounts_la_LDFLAGS = \
|
|
-module -avoid-version $(NO_UNDEFINED)
|
|
|
|
-include $(top_srcdir)/git.mk
|