mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +00:00
d9cd0e2e44
That example only tested the property probe interface, which has been removed. The same kind of thing can now be done with the generic gst-device-monitor tool.
19 lines
323 B
Makefile
19 lines
323 B
Makefile
if USE_JACK
|
|
JACK_DIR=jack
|
|
else
|
|
JACK_DIR=
|
|
endif
|
|
|
|
if USE_CAIRO
|
|
CAIRO_DIR=cairo
|
|
else
|
|
CAIRO_DIR=
|
|
endif
|
|
|
|
SUBDIRS = audiofx equalizer $(JACK_DIR) level \
|
|
rtp shapewipe spectrum v4l2 $(CAIRO_DIR)
|
|
|
|
DIST_SUBDIRS = audiofx equalizer jack level \
|
|
rtp shapewipe spectrum v4l2 cairo
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|