1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
AM_CPPFLAGS = \
-I$(top_srcdir) \
-I$(srcdir) \
$(LIBPEAS_CFLAGS) \
$(LIB_PEAS_GTK_CFLAGS) \
$(WARN_CFLAGS) \
$(DISABLE_DEPRECATED)
pluginincludedir = $(includedir)/pragha/plugins
plugininclude_HEADERS = pragha-plugin-macros.h
SUBDIRS = \
mpris2 \
gnome-media-keys
if HAVE_LIBGLYR
SUBDIRS += song-info
endif
if HAVE_LIBKEYBINDER
SUBDIRS += keybinder
endif
if HAVE_LIBNOTIFY
SUBDIRS += notify
endif
if HAVE_GUDEV
SUBDIRS += devices
SUBDIRS += removable-media
endif
if HAVE_LIBMTP
SUBDIRS += mtp
endif
if HAVE_LIBSOUP
SUBDIRS += acoustid
SUBDIRS += tunein
endif
if HAVE_RYGEL
SUBDIRS += dlna
endif
if HAVE_GRILO3
SUBDIRS += dlna-renderer
endif
if HAVE_GRILO2
SUBDIRS += dlna-renderer
endif
if HAVE_LIBCDIO
if HAVE_LIBCDIO_PARANOIA
if HAVE_LIBCDDB
SUBDIRS += cdrom
endif
endif
endif
if HAVE_LIBCLASTFM
SUBDIRS += lastfm
endif
|