mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
72127a85f5
--tag=CC is needed for static build
84 lines
2.1 KiB
Makefile
84 lines
2.1 KiB
Makefile
plugin_LTLIBRARIES = libgstapplemedia_nonpublic.la
|
|
|
|
libgstapplemedia_nonpublic_la_SOURCES = \
|
|
plugin.m \
|
|
bufferfactory.m \
|
|
corevideobuffer.c \
|
|
coremediabuffer.c \
|
|
cvapi.c \
|
|
cmapi.c \
|
|
coremediactx.c \
|
|
dynapi.c
|
|
|
|
libgstapplemedia_nonpublic_la_CPPFLAGS = \
|
|
-Dgst_dyn_api_get_type=gst_dyn_api_priv_get_type \
|
|
-Dgst_dyn_api_debug=gst_dyn_api_priv_debug \
|
|
-Dgst_dyn_api_new=gst_dyn_api_priv_new \
|
|
-Dgst_core_media_buffer_new=gst_core_media_buffer_priv_new \
|
|
-Dgst_core_media_buffer_get_type=gst_core_media_buffer_priv_get_type \
|
|
-Dgst_core_media_buffer_get_pixel_buffer=gst_core_media_buffer_priv_get_pixel_buffer\
|
|
-Dgst_core_video_buffer_new=gst_core_video_buffer_priv_new \
|
|
-Dgst_core_video_buffer_get_type=gst_core_video_buffer_priv_get_type \
|
|
-Dgst_core_media_ctx_new=gst_core_media_ctx_priv_new \
|
|
-Dgst_core_media_ctx_get_type=gst_core_media_ctx_priv_get_type
|
|
|
|
libgstapplemedia_nonpublic_la_CFLAGS = \
|
|
$(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
|
|
libgstapplemedia_nonpublic_la_OBJCFLAGS = \
|
|
$(GST_OBJCFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
|
|
if HAVE_IOS
|
|
libgstapplemedia_nonpublic_la_OBJCFLAGS += -fobjc-abi-version=2 -fobjc-legacy-dispatch
|
|
endif
|
|
|
|
libgstapplemedia_nonpublic_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION) \
|
|
$(GMODULE_NO_EXPORT_LIBS)
|
|
|
|
libgstapplemedia_nonpublic_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
|
|
|
libgstapplemedia_nonpublic_la_LDFLAGS = \
|
|
$(GST_PLUGIN_LDFLAGS) \
|
|
$(GST_BASE_LDFLAGS) \
|
|
$(GST_PLUGINS_BASE_LDFLAGS) \
|
|
-Wl,-framework -Wl,Foundation \
|
|
-Wl,-framework -Wl,CoreFoundation \
|
|
-Wl,-framework -Wl,CoreVideo
|
|
|
|
noinst_HEADERS = \
|
|
miovideosrc.h \
|
|
miovideodevice.h \
|
|
celvideosrc.h \
|
|
bufferfactory.h \
|
|
corevideobuffer.h \
|
|
coremediabuffer.h \
|
|
coremediactx.h \
|
|
mioapi.h \
|
|
mtapi.h \
|
|
celapi.h \
|
|
cvapi.h \
|
|
cmapi.h \
|
|
dynapi.h \
|
|
dynapi-internal.h
|
|
|
|
if HAVE_IOS
|
|
|
|
#libgstapplemedia_nonpublic_la_SOURCES += \
|
|
# celvideosrc.c \
|
|
# mtapi.c \
|
|
# celapi.c
|
|
|
|
else
|
|
|
|
libgstapplemedia_nonpublic_la_SOURCES += \
|
|
mioapi.c
|
|
|
|
endif
|
|
|