mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
828252e0f2
Original commit message from CVS: * common/as-libtool.mak: Fine-tune DLL building. * configure.ac: Link plugins against libgstreamer. Define plugindir (like gst-plugins) * examples/plugins/Makefile.am: remove plugindir * gst/autoplug/Makefile.am: DLL building fixes * gst/elements/Makefile.am: DLL building fixes. Disable pipefilter on Windows. * gst/elements/gstelements.c: Conditionally disable pipefilter. * gst/indexers/Makefile.am: DLL building fixes * gst/schedulers/Makefile.am: DLL building fixes. * libs/gst/bytestream/Makefile.am: DLL building fixes. * libs/gst/control/Makefile.am: same * libs/gst/getbits/Makefile.am: same * testsuite/Makefile.am: New dlopen directory * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works when dlopened. * testsuite/dlopen/dlopen_gst.c: (main): same * testsuite/dlopen/loadgst.c: (do_test): same
36 lines
1 KiB
Makefile
36 lines
1 KiB
Makefile
|
|
lib_LTLIBRARIES = libgstcontrol-@GST_MAJORMINOR@.la
|
|
AS_LIBTOOL_LIB = libgstcontrol-@GST_MAJORMINOR@
|
|
|
|
EXTRA_DIST = $(as_libtool_EXTRA_DIST)
|
|
noinst_DATA = $(as_libtool_noinst_DATA_files)
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/control
|
|
libgstcontrol_@GST_MAJORMINOR@_include_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparam_smooth.h \
|
|
unitconvert.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dparam_smooth.c \
|
|
unitconvert.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
|
# control uses log and exp, so we need -lm if xml is disabled
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) -lm
|
|
|
|
install-data-local: as-libtool-install-data-local
|
|
|
|
uninstall-local: as-libtool-uninstall-local
|
|
|
|
include $(top_srcdir)/common/as-libtool.mak
|
|
|