mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
9cc497e5c3
QuickTime.h is no longer available on OS X 10.12 (Sierra), and both the header and the framework seem unnecessary for compilation - at least as of 10.11 (El Capitan). https://bugzilla.gnome.org/show_bug.cgi?id=770526
18 lines
655 B
Makefile
18 lines
655 B
Makefile
|
|
plugin_LTLIBRARIES = libgstosxvideosink.la
|
|
|
|
libgstosxvideosink_la_SOURCES = osxvideosink.m cocoawindow.m
|
|
libgstosxvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstosxvideosink_la_OBJCFLAGS = $(GST_OBJCFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstosxvideosink_la_LIBADD = \
|
|
$(GST_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-$(GST_API_VERSION)
|
|
|
|
libgstosxvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,Cocoa -Wl,-framework -Wl,OpenGL
|
|
libgstosxvideosink_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS) --tag=CC
|
|
|
|
noinst_HEADERS = osxvideosink.h cocoawindow.h
|