qt: playlist: use item title if available
[vlc.git] / modules / control / Makefile.am
blobd37793445c1fb3822595043c0e3132af83871576
1 controldir = $(pluginsdir)/control
3 libdummy_plugin_la_SOURCES = control/dummy.c control/intromsg.h
4 libgestures_plugin_la_SOURCES = control/gestures.c
5 libhotkeys_plugin_la_SOURCES = control/hotkeys.c
6 libhotkeys_plugin_la_LIBADD = $(LIBM)
7 # XXX: netsync disabled, move current code to new playlist/player and add a
8 # way to control the output clock from the player
9 #libnetsync_plugin_la_SOURCES = control/netsync.c
10 #libnetsync_plugin_la_LIBADD = $(SOCKET_LIBS)
11 librc_plugin_la_SOURCES = \
12         control/intromsg.h \
13         control/cli/player.c control/cli/playlist.c \
14         control/cli/cli.c control/cli/cli.h
15 librc_plugin_la_LIBADD = $(SOCKET_LIBS) $(LIBM)
17 control_LTLIBRARIES = \
18         libdummy_plugin.la \
19         libgestures_plugin.la \
20         libhotkeys_plugin.la \
21         librc_plugin.la
23 liblirc_plugin_la_SOURCES = control/lirc.c
24 liblirc_plugin_la_LIBADD = -llirc_client
25 if HAVE_LIRC
26 control_LTLIBRARIES += liblirc_plugin.la
27 endif
29 libvlc_motion_la_SOURCES = control/motionlib.c control/motionlib.h
30 if HAVE_DARWIN
31 libvlc_motion_la_SOURCES += control/unimotion.c control/unimotion.h
32 libvlc_motion_la_CFLAGS = $(AM_CFLAGS) -fconstant-cfstrings
33 endif
34 libvlc_motion_la_LDFLAGS = -static
35 noinst_LTLIBRARIES += libvlc_motion.la
37 libdbus_plugin_la_SOURCES = \
38         control/dbus/dbus_introspect.h control/dbus/dbus_common.h \
39         control/dbus/dbus_root.c control/dbus/dbus_root.h \
40         control/dbus/dbus_player.c control/dbus/dbus_player.h \
41         control/dbus/dbus_tracklist.c control/dbus/dbus_tracklist.h \
42         control/dbus/dbus.c
43 libdbus_plugin_la_CFLAGS = $(AM_CFLAGS) $(DBUS_CFLAGS)
44 libdbus_plugin_la_LIBADD = $(DBUS_LIBS) $(LIBM)
45 if HAVE_DBUS
46 control_LTLIBRARIES += libdbus_plugin.la
47 endif
49 libxcb_hotkeys_plugin_la_SOURCES = control/globalhotkeys/xcb.c
50 libxcb_hotkeys_plugin_la_CFLAGS = $(AM_CFLAGS) \
51         $(XCB_KEYSYMS_CFLAGS) $(XCB_CFLAGS)
52 libxcb_hotkeys_plugin_la_LIBADD = $(XCB_KEYSYMS_LIBS) $(XCB_LIBS)
53 if HAVE_XCB_KEYSYMS
54 control_LTLIBRARIES += libxcb_hotkeys_plugin.la
55 endif
57 libntservice_plugin_la_SOURCES = control/ntservice.c
58 libwin_hotkeys_plugin_la_SOURCES = control/globalhotkeys/win32.c
59 libwin_msg_plugin_la_SOURCES = control/win_msg.c
60 if HAVE_WIN32_DESKTOP
61 control_LTLIBRARIES += libntservice_plugin.la
62 control_LTLIBRARIES += libwin_hotkeys_plugin.la libwin_msg_plugin.la
63 endif