mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
46bbc60d24
All code interacting with Objective-C objects should now use Automated Reference Counting rather than manual memory management or Garbage Collection. Because ARC prohibits C-structs from containing references to Objective-C objects, all such fields are now typed 'gpointer'. Setting and gettings Objective-C fields on such a struct now uses explicit __bridge_* calls to tell ARC about object lifetimes. https://bugzilla.gnome.org/show_bug.cgi?id=777847
42 lines
983 B
Makefile
42 lines
983 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LTLIBRARIES = libgstgl-cocoa.la
|
|
|
|
libgstgl_cocoa_la_SOURCES = \
|
|
gstglwindow_cocoa.m \
|
|
gstglcontext_cocoa.m \
|
|
gstgldisplay_cocoa.m \
|
|
gstglcaopengllayer.m
|
|
|
|
noinst_HEADERS = \
|
|
gstglcontext_cocoa.h \
|
|
gstgldisplay_cocoa.h \
|
|
gstglwindow_cocoa.h \
|
|
gstgl_cocoa_private.h
|
|
|
|
libgstgl_cocoaincludedir = $(includedir)/gstreamer-@GST_API_VERSION@/gst/gl/cocoa
|
|
libgstgl_cocoainclude_HEADERS = \
|
|
gstglcaopengllayer.h
|
|
|
|
libgstgl_cocoa_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GL_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
|
|
libgstgl_cocoa_la_OBJCFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
-fobjc-arc \
|
|
$(GL_OBJCFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_OBJCFLAGS)
|
|
|
|
libgstgl_cocoa_la_LDFLAGS = \
|
|
$(GST_LIB_LDFLAGS) \
|
|
$(GST_ALL_LDFLAGS)
|
|
|
|
libgstgl_cocoa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|