metainfo: add geolocation plugin
[claws.git] / src / plugins / geolocation / Makefile.am
1 # Makefile.am for "src/plugins/geolocation" directory
2 # This file is part of Claws Mail package.
3 # See COPYING file for license details.
4
5 appdata_files = claws-mail-geolocation.metainfo.xml
6 appdatadir = $(datadir)/appdata
7 appdata_DATA = $(appdata_files)
8 EXTRA_DIST = $(appdata_files)
9
10 plugindir = $(pkglibdir)/plugins
11
12 if BUILD_GEOLOCATION_PLUGIN
13 plugin_LTLIBRARIES = geolocation.la
14 endif
15
16 geolocation_la_SOURCES = \
17         geolocation_plugin.c \
18         pixmap_earth.h
19
20 geolocation_la_LDFLAGS = \
21         -avoid-version -module \
22         $(GTK_LIBS) \
23         $(LIBSOUP_LIBS) \
24         $(CHAMPLAIN_LIBS)
25
26 geolocation_la_CPPFLAGS = \
27         -I$(top_srcdir)/src \
28         -I$(top_srcdir)/src/common \
29         -I$(top_builddir)/src/common \
30         -I$(top_srcdir)/src/gtk \
31         $(GLIB_CFLAGS) \
32         $(GTK_CFLAGS) \
33         $(LIBSOUP_CFLAGS) \
34         $(CHAMPLAIN_CFLAGS)