mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 16:21:17 +00:00
8cec944149
Those where missing the the dev release tarballs for 1.9.2 which prevented building from tarball on OSX platform
38 lines
1.4 KiB
Makefile
38 lines
1.4 KiB
Makefile
plugin_LTLIBRARIES = libgstosxaudio.la
|
|
|
|
libgstosxaudio_la_SOURCES = gstosxaudioringbuffer.c \
|
|
gstosxaudioelement.c \
|
|
gstosxaudiosink.c \
|
|
gstosxaudiosrc.c \
|
|
gstosxcoreaudiocommon.c \
|
|
gstosxcoreaudio.c \
|
|
gstosxaudio.c
|
|
|
|
libgstosxaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
|
|
-Wno-deprecated-declarations
|
|
libgstosxaudio_la_LIBADD = \
|
|
-lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
|
|
libgstosxaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox
|
|
libgstosxaudio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
|
|
|
noinst_HEADERS = gstosxaudiosink.h \
|
|
gstosxaudiodeviceprovider.h \
|
|
gstosxaudioelement.h \
|
|
gstosxaudioringbuffer.h \
|
|
gstosxaudiosrc.h \
|
|
gstosxcoreaudiocommon.h \
|
|
gstosxcoreaudio.h
|
|
|
|
EXTRA_DIST = gstosxcoreaudiohal.c \
|
|
gstosxcoreaudioremoteio.c
|
|
|
|
if !HAVE_IOS
|
|
libgstosxaudio_la_SOURCES += gstosxaudiodeviceprovider.c
|
|
libgstosxaudio_la_LDFLAGS += -Wl,-framework,AudioUnit -Wl,-framework,CoreServices
|
|
else
|
|
EXTRA_DIST += gstosxaudiodeviceprovider.c
|
|
endif
|