~ubuntu-branches/ubuntu/quantal/gst-plugins-bad0.10/quantal-proposed

« back to all changes in this revision

Viewing changes to tests/examples/camerabin2/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ken VanDine
  • Date: 2011-07-19 14:32:43 UTC
  • mfrom: (18.4.21 sid)
  • Revision ID: james.westby@ubuntu.com-20110719143243-p7pnkh45akfp0ihk
Tags: 0.10.22-2ubuntu1
* Rebased on debian unstable, remaining changes:
  - debian/gstreamer-plugins-bad.install
    * don't include dtmf, liveadder, rtpmux, autoconvert and shm, we include 
      them in -good

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
noinst_DATA = $(GST_CAMERABIN_UI_FILES)
23
23
 
24
 
INCLUDES = -DCAMERA_APPS_UIDIR=\""$(uidir)"\"
 
24
INCLUDES = -DCAMERA_APPS_UIDIR=\""$(srcdir)"\"
25
25
 
26
26
else
27
27
GST_CAMERABIN_GTK_EXAMPLES =
28
28
endif
29
29
 
30
 
noinst_PROGRAMS = $(GST_CAMERABIN_GTK_EXAMPLES)
 
30
if HAVE_X11
 
31
 
 
32
GST_CAMERABIN_X11_EXAMPLES = gst-camerabin2-test
 
33
 
 
34
gst_camerabin2_test_SOURCES = gst-camerabin2-test.c
 
35
gst_camerabin2_test_CFLAGS  = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_PLUGINS_BAD_CFLAGS)
 
36
gst_camerabin2_test_LDADD   = \
 
37
        $(top_builddir)/gst-libs/gst/interfaces/libgstphotography-@GST_MAJORMINOR@.la \
 
38
        $(GST_PLUGINS_BASE_LIBS) \
 
39
        -lgstinterfaces-@GST_MAJORMINOR@ \
 
40
        -lgstpbutils-@GST_MAJORMINOR@ \
 
41
        $(GST_LIBS) \
 
42
        $(X11_LIBS)
 
43
 
 
44
else
 
45
GST_CAMERABIN_X11_EXAMPLES =
 
46
endif
 
47
 
 
48
noinst_PROGRAMS = $(GST_CAMERABIN_GTK_EXAMPLES) $(GST_CAMERABIN_X11_EXAMPLES)
31
49
 
32
50
EXTRA_DIST = $(GST_CAMERABIN_UI_FILES)
33
51