2017-01-31 09:56:59 +00:00
|
|
|
lib_LTLIBRARIES = libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
|
|
|
|
glib_enum_headers = dtlstransport.h icetransport.h rtptransceiver.h webrtc_fwd.h
|
|
|
|
glib_enum_define = GST_WEBRTC
|
|
|
|
glib_gen_prefix = gst_webrtc
|
|
|
|
glib_gen_basename = webrtc
|
2018-03-22 13:43:52 +00:00
|
|
|
glib_gen_decl_banner=GST_WEBRTC_API
|
|
|
|
glib_gen_decl_include=\#include <gst/webrtc/webrtc_fwd.h>
|
2017-01-31 09:56:59 +00:00
|
|
|
|
|
|
|
built_sources = webrtc-enumtypes.c
|
|
|
|
built_headers = webrtc-enumtypes.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
|
|
|
|
libgstwebrtc_@GST_API_VERSION@_la_SOURCES = \
|
|
|
|
dtlstransport.c \
|
|
|
|
icetransport.c \
|
|
|
|
rtcsessiondescription.c \
|
|
|
|
rtpreceiver.c \
|
|
|
|
rtpsender.c \
|
|
|
|
rtptransceiver.c
|
|
|
|
|
|
|
|
nodist_libgstwebrtc_@GST_API_VERSION@_la_SOURCES = $(built_sources)
|
|
|
|
|
|
|
|
libgstwebrtc_@GST_API_VERSION@includedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/webrtc
|
|
|
|
libgstwebrtc_@GST_API_VERSION@include_HEADERS = \
|
|
|
|
dtlstransport.h \
|
|
|
|
icetransport.h \
|
|
|
|
rtcsessiondescription.h \
|
|
|
|
rtpreceiver.h \
|
|
|
|
rtpsender.h \
|
|
|
|
rtptransceiver.h \
|
|
|
|
webrtc_fwd.h \
|
|
|
|
webrtc.h
|
|
|
|
|
|
|
|
nodist_libgstwebrtc_@GST_API_VERSION@include_HEADERS = $(built_headers)
|
|
|
|
|
|
|
|
libgstwebrtc_@GST_API_VERSION@_la_CFLAGS = \
|
|
|
|
-I$(top_builddir)/gst-libs \
|
|
|
|
-I$(top_srcdir)/gst-libs \
|
2018-09-24 10:52:22 +00:00
|
|
|
-DBUILDING_GST_WEBRTC \
|
2017-01-31 09:56:59 +00:00
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(GST_SDP_CFLAGS)
|
|
|
|
libgstwebrtc_@GST_API_VERSION@_la_LIBADD = \
|
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
|
|
|
$(GST_SDP_LIBS)
|
|
|
|
libgstwebrtc_@GST_API_VERSION@_la_LDFLAGS = \
|
|
|
|
$(GST_LIB_LDFLAGS) \
|
|
|
|
$(GST_ALL_LDFLAGS) \
|
|
|
|
$(GST_LT_LDFLAGS)
|
|
|
|
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|
2018-03-15 10:04:00 +00:00
|
|
|
|
|
|
|
if HAVE_INTROSPECTION
|
|
|
|
BUILT_GIRSOURCES = GstWebRTC-@GST_API_VERSION@.gir
|
|
|
|
|
|
|
|
gir_headers=$(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@include_HEADERS))
|
2018-03-16 17:21:31 +00:00
|
|
|
gir_sources=$(patsubst %,$(srcdir)/%, $(libgstwebrtc_@GST_API_VERSION@_la_SOURCES)) $(BUILT_SOURCES)
|
2018-03-15 10:04:00 +00:00
|
|
|
|
|
|
|
GstWebRTC-@GST_API_VERSION@.gir: $(INTROSPECTION_SCANNER) libgstwebrtc-@GST_API_VERSION@.la
|
|
|
|
$(AM_V_GEN)GST_PLUGIN_SYSTEM_PATH_1_0="" GST_PLUGIN_PATH_1_0="" GST_REGISTRY_UPDATE=no GI_SCANNER_DISABLE_CACHE=yes \
|
|
|
|
CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" CC="$(CC)" PKG_CONFIG="$(PKG_CONFIG)" DLLTOOL="$(DLLTOOL)" \
|
|
|
|
PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
|
|
|
$(INTROSPECTION_SCANNER) -v --namespace GstWebRTC \
|
|
|
|
--nsversion=@GST_API_VERSION@ \
|
|
|
|
--warn-all \
|
|
|
|
--strip-prefix=Gst \
|
|
|
|
-I$(top_srcdir)/gst-libs \
|
|
|
|
-I$(top_builddir)/gst-libs \
|
|
|
|
--c-include "gst/webrtc/webrtc.h" \
|
|
|
|
--add-include-path=$(top_builddir)/gst-libs \
|
|
|
|
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-1.0` \
|
|
|
|
--add-include-path=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-sdp-1.0` \
|
|
|
|
--library-path=$(top_builddir)/gst-libs \
|
|
|
|
--library=libgstwebrtc-@GST_API_VERSION@.la \
|
|
|
|
--include=Gst-@GST_API_VERSION@ \
|
|
|
|
--include=GstSdp-@GST_API_VERSION@ \
|
|
|
|
--libtool="${LIBTOOL}" \
|
|
|
|
--pkg gstreamer-@GST_API_VERSION@ \
|
|
|
|
--pkg gstreamer-sdp-@GST_API_VERSION@ \
|
|
|
|
--pkg-export gstreamer-webrtc-@GST_API_VERSION@ \
|
|
|
|
--add-init-section="$(INTROSPECTION_INIT)" \
|
2018-03-22 13:42:31 +00:00
|
|
|
-DGST_USE_UNSTABLE_API \
|
2018-03-15 10:04:00 +00:00
|
|
|
--output $@ \
|
|
|
|
$(gir_headers) \
|
|
|
|
$(gir_sources)
|
|
|
|
|
|
|
|
# INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
|
|
|
|
# install anything - we need to install inside our prefix.
|
|
|
|
girdir = $(datadir)/gir-1.0
|
|
|
|
gir_DATA = $(BUILT_GIRSOURCES)
|
|
|
|
|
|
|
|
typelibsdir = $(libdir)/girepository-1.0/
|
|
|
|
|
|
|
|
typelibs_DATA = $(BUILT_GIRSOURCES:.gir=.typelib)
|
|
|
|
|
|
|
|
%.typelib: %.gir $(INTROSPECTION_COMPILER)
|
|
|
|
$(AM_V_GEN)PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" \
|
|
|
|
$(INTROSPECTION_COMPILER) \
|
|
|
|
--includedir=$(srcdir)/gst-libs \
|
|
|
|
--includedir=$(builddir)/gst-libs \
|
|
|
|
--includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-1.0` \
|
|
|
|
--includedir=`PKG_CONFIG_PATH="$(GST_PKG_CONFIG_PATH)" $(PKG_CONFIG) --variable=girdir gstreamer-sdp-1.0` \
|
|
|
|
$(INTROSPECTION_COMPILER_OPTS) $< -o $(@F)
|
|
|
|
|
|
|
|
CLEANFILES += $(BUILT_GIRSOURCES) $(typelibs_DATA)
|
|
|
|
endif
|