mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
2fdc6ef88a
Only compile the cgroup example when we have libcgroup
14 lines
345 B
Makefile
14 lines
345 B
Makefile
noinst_PROGRAMS = test-video test-ogg test-mp4 test-readme \
|
|
test-launch test-sdp test-uri test-auth \
|
|
test-multicast test-multicast2
|
|
|
|
#INCLUDES = -I$(top_srcdir) -I$(srcdir)
|
|
|
|
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
AM_LDFLAGS = $(GST_OBJ_LIBS) $(GIO_LIBS)
|
|
|
|
if HAVE_LIBCGROUP
|
|
noinst_PROGRAMS += test-cgroups
|
|
AM_LDFLAGS += $(LIBCGROUP_LIBS)
|
|
endif
|
|
|