]> git.sesse.net Git - vlc/blob - modules/video_output/Modules.am
XCB: mouse events handling and background color
[vlc] / modules / video_output / Modules.am
1 SUBDIRS = msw qte x11
2 # Automake forgets to add a proper tag to libtool with Objective-C files.
3 # Moreocer Libtool should default tag to CC when none is specified but
4 # obviously does not. Here is a fix for that.
5 LIBTOOL=@LIBTOOL@ --tag=CC
6
7 SOURCES_aa = aa.c
8 SOURCES_caca = caca.c
9 SOURCES_fb = fb.c
10 SOURCES_omapfb = omapfb.c
11 SOURCES_ggi = ggi.c
12 SOURCES_vout_sdl = sdl.c
13 SOURCES_svgalib = svgalib.c
14 SOURCES_mga = mga.c
15 SOURCES_hd1000v = hd1000v.cpp
16 SOURCES_snapshot = snapshot.c
17 SOURCES_opengl = opengl.c
18 SOURCES_opengllayer = opengllayer.m
19 SOURCES_directfb = directfb.c
20 SOURCES_vmem = vmem.c
21 SOURCES_yuv = yuv.c
22
23 # TODO: move to configure.ac once/if xcb plugin gets more functional
24 XCB_LIBS = -lxcb
25 XCB_SHM_LIBS = -lxcb-shm
26 XCB_AUX_LIBS = -lxcb-aux
27 XCB_IMAGE_LIBS = -lxcb-image
28
29 libxcb_plugin_la_SOURCES = \
30         xcb/xcb_vlc.h \
31         xcb/xcb.c \
32         xcb/events.c
33 libxcb_plugin_la_CFLAGS = $(AM_CFLAGS) \
34         $(XCB_CFLAGS) $(XCB_SHM) \
35         $(XCB_AUX_CFLAGS) $(XCB_IMAGE_CFLAGS)
36 libxcb_plugin_la_LIBADD = $(AM_LIBADD) \
37         $(XCB_LIBS) $(XCB_SHM) \
38         $(XCB_AUX_LIBS) $(XCB_IMAGE_LIBS)
39 libxcb_plugin_la_DEPENDENCIES =
40 EXTRA_LTLIBRARIES += libxcb_plugin.la