mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
e1fcd42a19
+ Add some markdown files to link between languages + Add a simple 'play timeline with one clip" example in C and python
26 lines
484 B
Makefile
26 lines
484 B
Makefile
if HAVE_GTK_X11
|
|
graphical=ges-ui
|
|
else
|
|
graphical=
|
|
endif
|
|
|
|
noinst_PROGRAMS = \
|
|
concatenate \
|
|
simple1 \
|
|
test1 \
|
|
test2 \
|
|
test3 \
|
|
test4 \
|
|
transition \
|
|
thumbnails \
|
|
overlays \
|
|
text_properties \
|
|
assets \
|
|
multifilesrc \
|
|
play_timeline_with_one_clip \
|
|
$(graphical)
|
|
|
|
AM_CFLAGS = -I$(top_srcdir) $(GST_PBUTILS_CFLAGS) $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
AM_LDFLAGS = -export-dynamic
|
|
LDADD = $(top_builddir)/ges/libges-@GST_API_VERSION@.la $(GST_PBUTILS_LIBS) $(GST_LIBS) $(GTK_LIBS)
|
|
|