mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 17:39:47 +00:00
24 lines
1 KiB
Meson
24 lines
1 KiB
Meson
gtk_dep = dependency('gtk+-3.0', required : get_option('examples'))
|
|
gdk_x11_dep = dependency('gdk-x11-3.0', required : get_option('examples'))
|
|
if gtk_dep.found() and gdk_x11_dep.found()
|
|
camera2_args = [
|
|
'-DGST_USE_UNSTABLE_API',
|
|
'-DCAMERA_APPS_UIDIR="@0@"'.format(meson.current_source_dir()),
|
|
cc.get_supported_link_arguments('-fvisibility=default'),
|
|
]
|
|
gmodule_export_dep = dependency('gmodule-export-2.0')
|
|
executable('gst-camera2', 'gst-camera2.c',
|
|
include_directories : [configinc],
|
|
dependencies : [gstphotography_dep, gtk_dep, gdk_x11_dep, gst_dep, gstvideo_dep, gstpbutils_dep, gmodule_export_dep],
|
|
c_args : gst_plugins_bad_args + camera2_args,
|
|
install: false)
|
|
endif
|
|
|
|
x11_dep = dependency('x11', required : get_option('examples'))
|
|
if x11_dep.found()
|
|
executable('gst-camerabin2-test', 'gst-camerabin2-test.c',
|
|
include_directories : [configinc],
|
|
dependencies : [gstphotography_dep, x11_dep, gst_dep, gstvideo_dep, gstpbutils_dep],
|
|
c_args : gst_plugins_bad_args + ['-DGST_USE_UNSTABLE_API'],
|
|
install: false)
|
|
endif
|