mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
e0a3d5eaf8
Original commit message from CVS: * added a get_perms_func to gstxmlregistry that will set _WRITABLE and _READABLE as appropriate * added an object property for location so that we can do some cleanup and initialization
20 lines
779 B
Makefile
20 lines
779 B
Makefile
testprogs = cleanup1 cleanup2 cleanup3 cleanup4 cleanup5
|
|
|
|
GST_PLUGIN_PATH = $(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=`pwd`/test-registry.xml
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
# we have nothing but apps here, we can do this safely
|
|
cleanup1_LDADD = $(GST_LIBS) #-ldmallocth
|
|
cleanup1_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup2_LDADD = $(GST_LIBS)
|
|
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup3_LDADD = $(GST_LIBS)
|
|
cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup4_LDADD = $(GST_LIBS)
|
|
cleanup4_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
|
cleanup5_LDADD = $(GST_LIBS)
|
|
cleanup5_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|