mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
39d6b7462f
ControlSources are now gdouble based. A control source is mapped to a particullar GObject property using a ControlBinding.
19 lines
617 B
Makefile
19 lines
617 B
Makefile
noinst_PROGRAMS = audio-example control-sources
|
|
|
|
AM_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_builddir)/libs
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libs/gst/controller/libgstcontroller-@GST_MAJORMINOR@.la \
|
|
$(GST_OBJ_LIBS)
|
|
|
|
Android.mk: Makefile.am audio-example.c
|
|
androgenizer \
|
|
-:PROJECT audio-example -:EXECUTABLE audio-example \
|
|
-:TAGS eng debug \
|
|
-:REL_TOP $(top_srcdir) -:ABS_TOP $(abs_top_srcdir) \
|
|
-:SOURCES audio-example.c \
|
|
-:CFLAGS $(DEFS) $(DEFAULT_INCLUDES) $(audio_example_CFLAGS) \
|
|
-:LDFLAGS -lgstcontroller-@GST_MAJORMINOR@ \
|
|
$(GST_OBJ_LIBS) -ldl \
|
|
-:PASSTHROUGH LOCAL_ARM_MODE:=arm \
|
|
> $@
|