mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
90ee1e400a
Original commit message from CVS: * s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it just makes more sense that way * added jack element, doesn't quite work right yet but i didn't want to lose the work -- it does build, register, and attempt to run though * imposed some restrictions on the naming of request pads to better allow for reverse parsing * added '%s' to reverse parsing * added new bin flag to indicate that it is self-iterating, and some lame code in gst-launch to test it out * fixen on launch-gui * added pkg-config stuff for the editor's libs
12 lines
291 B
Makefile
12 lines
291 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstjack.la
|
|
|
|
libgstjack_la_SOURCES = gstjack.c
|
|
libgstjack_la_CFLAGS = $(GST_CFLAGS) $(JACK_CFLAGS)
|
|
libgstjack_la_LIBADD = $(GST_LIBS) $(JACK_LIBS)
|
|
libgstjack_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|
|
|
|
noinst_HEADERS = gstjack.h
|
|
|
|
EXTRA_DIST = README
|