mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
5f4a965f67
Pipeline serialisation to and from XML is horribly broken for all but the most simple use cases, and will likely never be fixed. Make sure everyone playing around with these tools is aware of this, to avoid frustration. See countless bug reports in bugzilla. Fixes bug #622685.
47 lines
639 B
Makefile
47 lines
639 B
Makefile
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = launch
|
|
endif
|
|
|
|
# adapter test needs sys/times.h and unistd.h
|
|
if HAVE_SYS_TIMES_H_AND_UNISTD_H
|
|
ADAPTER_TEST_DIR = adapter
|
|
else
|
|
ADAPTER_TEST_DIR =
|
|
endif
|
|
|
|
always_dirs = \
|
|
controller \
|
|
helloworld \
|
|
manual \
|
|
metadata \
|
|
queue \
|
|
stepping \
|
|
streams \
|
|
typefind
|
|
|
|
#appreader
|
|
#cutter
|
|
#events
|
|
#helloworld2
|
|
#launch
|
|
#manual
|
|
#mixer
|
|
#pingpong
|
|
#plugins
|
|
#pwg
|
|
#queue2
|
|
#queue3
|
|
#queue4
|
|
#retag
|
|
#thread
|
|
|
|
SUBDIRS = \
|
|
$(always_dirs) \
|
|
$(ADAPTER_TEST_DIR) \
|
|
$(GST_PARSE_DIRS)
|
|
|
|
DIST_SUBDIRS = $(always_dirs) adapter launch
|
|
|
|
include $(top_srcdir)/common/parallel-subdirs.mak
|