mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
bbcc24410d
Original commit message from CVS: * configure.ac: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * docs/plugins/inspect/plugin-videocrop.xml: * gst-plugins-good.spec.in: * sys/Makefile.am: * tests/check/Makefile.am: * tests/icles/Makefile.am: * tests/icles/videocrop-test.c: Move videocrop and osxvideo from -bad.
30 lines
685 B
Makefile
30 lines
685 B
Makefile
if USE_GST_V4L2
|
|
V4L2_TESTS = v4l2src-test
|
|
|
|
v4l2src_test_SOURCES = v4l2src-test.c
|
|
v4l2src_test_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS)
|
|
v4l2src_test_LDADD = $(GST_PLUGINS_BASE_LIBS)
|
|
|
|
v4l2src_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -lgstinterfaces-$(GST_MAJORMINOR)
|
|
|
|
else
|
|
V4L2_TESTS =
|
|
endif
|
|
|
|
if USE_X
|
|
X_TESTS = ximagesrc-test
|
|
|
|
ximagesrc_test_SOURCES = ximagesrc-test.c
|
|
ximagesrc_test_CFLAGS = $(GST_CFLAGS)
|
|
ximagesrc_test_LDFLAGS = $(GST_LIBS)
|
|
else
|
|
X_TESTS =
|
|
endif
|
|
|
|
videocrop_test_SOURCES = videocrop-test.c
|
|
videocrop_test_CFLAGS = $(GST_CFLAGS)
|
|
videocrop_test_LDADD = $(GST_LIBS)
|
|
videocrop_test_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_PROGRAMS = $(V4L2_TESTS) $(X_TESTS) videocrop-test
|
|
|