2009-08-06 17:51:29 +00:00
|
|
|
include $(top_srcdir)/common/check.mak
|
|
|
|
|
|
|
|
TESTS_ENVIRONMENT =
|
|
|
|
|
2012-04-04 12:50:23 +00:00
|
|
|
plugindir = $(libdir)/gstreamer-@GST_API_VERSION@
|
2009-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
# override to _not_ install the test plugins
|
|
|
|
install-pluginLTLIBRARIES:
|
|
|
|
|
|
|
|
# the core dumps of some machines have PIDs appended
|
|
|
|
CLEANFILES = core.* test-registry.*
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
common_cflags=-I$(top_srcdir) $(GST_PLUGINS_BASE_CFLAGS) $(GST_OBJ_CFLAGS) \
|
|
|
|
$(GST_CHECK_CFLAGS) $(GST_OPTION_CFLAGS) $(GST_CFLAGS)
|
|
|
|
common_ldadd=$(top_builddir)/ges/libges-@GST_API_VERSION@.la \
|
|
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) \
|
|
|
|
$(GST_OBJ_LIBS) $(GST_CHECK_LIBS)
|
|
|
|
|
|
|
|
testutils_noisnt_libraries=libtestutils.la
|
|
|
|
testutils_noinst_headers=ges/test-utils.h
|
|
|
|
libtestutils_la_LIBADD=$(common_ldadd)
|
|
|
|
libtestutils_la_CFLAGS=$(common_cflags)
|
|
|
|
libtestutils_la_SOURCES=ges/test-utils.c
|
|
|
|
|
2009-08-06 17:51:29 +00:00
|
|
|
SUPPRESSIONS = $(top_srcdir)/common/gst.supp # $(srcdir)/gst-plugins-bad.supp
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
|
2009-08-06 17:51:29 +00:00
|
|
|
clean-local: clean-local-check
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/backgroundsource\
|
2009-09-21 16:08:51 +00:00
|
|
|
ges/basic \
|
2010-03-12 18:07:15 +00:00
|
|
|
ges/layer \
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/effects \
|
|
|
|
ges/filesource \
|
2009-09-30 14:45:13 +00:00
|
|
|
ges/simplelayer \
|
2010-06-10 11:22:36 +00:00
|
|
|
ges/timelineobject \
|
2012-04-24 00:54:15 +00:00
|
|
|
ges/timelineedition \
|
2010-06-21 14:04:22 +00:00
|
|
|
ges/titles\
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/transition \
|
2010-07-14 14:12:56 +00:00
|
|
|
ges/overlays\
|
2012-11-24 02:51:17 +00:00
|
|
|
ges/text_properties
|
2009-08-06 17:51:29 +00:00
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
noinst_LTLIBRARIES=$(testutils_noisnt_libraries)
|
|
|
|
noinst_HEADERS=$(testutils_noinst_headers)
|
2009-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
AM_CFLAGS = $(common_cflags) -UG_DISABLE_ASSERT -UG_DISABLE_CAST_CHECKS
|
|
|
|
LDADD = $(common_ldadd) libtestutils.la
|
2009-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
EXTRA_DIST = #gst-plugins-bad.supp
|