mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +00:00
34233baae1
Otherwise, it fails to link. gst-build#13
21 lines
846 B
Meson
21 lines
846 B
Meson
osxvideo_sources = ['osxvideosink.m', 'cocoawindow.m']
|
|
|
|
have_osxvideo = false
|
|
if host_system != 'darwin'
|
|
subdir_done()
|
|
endif
|
|
|
|
osxvideo_opengl_dep = dependency('appleframeworks', modules : ['OpenGL'], required : get_option('osxvideo'))
|
|
osxvideo_cocoa_dep = dependency('appleframeworks', modules : ['Cocoa'], required : get_option('osxvideo'))
|
|
have_objc = add_languages('objc', required : get_option('osxvideo'))
|
|
|
|
if have_objc and osxvideo_opengl_dep.found() and osxvideo_cocoa_dep.found()
|
|
gstosxvideo = library('gstosxvideo',
|
|
osxvideo_sources,
|
|
c_args : gst_plugins_good_args,
|
|
include_directories : [configinc],
|
|
dependencies : [gstvideo_dep, osxvideo_opengl_dep, osxvideo_cocoa_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir)
|
|
pkgconfig.generate(gstosxvideo, install_dir : plugins_pkgconfig_install_dir)
|
|
endif
|