mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
6a4425e46a
Removing some copy pasted code Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2970>
21 lines
505 B
Meson
21 lines
505 B
Meson
gs_sources = [
|
|
'gstgscommon.cpp',
|
|
'gstgssink.cpp',
|
|
'gstgssrc.cpp',
|
|
'gstgs.cpp',
|
|
]
|
|
|
|
gs_dep = dependency('google_cloud_cpp_storage', version : '>= 1.25.0', required : get_option('gs'))
|
|
|
|
if gs_dep.found()
|
|
gstgs = library('gstgs',
|
|
gs_sources,
|
|
c_args : gst_plugins_bad_args,
|
|
cpp_args : gst_plugins_bad_args,
|
|
include_directories : [configinc, libsinc],
|
|
dependencies : [gstbase_dep, gs_dep],
|
|
install : true,
|
|
install_dir : plugins_install_dir,
|
|
)
|
|
plugins += [gstgs]
|
|
endif
|