mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
bbae2942c2
Original commit message from CVS: * common/c-to-xml.py: * common/gtk-doc-plugins.mak: a simple py script to generate valid xml from a C example probably also need to strip an MIT license when we decide * docs/plugins/Makefile.am: * gst/level/Makefile.am: * gst/level/gstlevel.c: (gst_level_init): * gst/level/level-example.c: (message_handler), (main): add an example to level that will show up in the docs * gst/rtp/TODO: add a note for the future
12 lines
332 B
Makefile
12 lines
332 B
Makefile
plugin_LTLIBRARIES = libgstlevel.la
|
|
|
|
libgstlevel_la_SOURCES = gstlevel.c
|
|
libgstlevel_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstlevel_la_LIBADD = $(GST_BASE_LIBS)
|
|
libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstlevel.h
|
|
|
|
noinst_PROGRAMS = level-example
|
|
level_example_CFLAGS = $(GST_CFLAGS)
|
|
level_example_LDADD = $(GST_LIBS)
|