mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
16 lines
409 B
Meson
16 lines
409 B
Meson
deps = [ges_dep, gstpbutils_dep, gio_dep]
|
|
|
|
ges_tool_args = [ges_c_args]
|
|
if gstvalidate_dep.found()
|
|
deps = deps + [gstvalidate_dep]
|
|
ges_tool_args += ['-DGST_USE_UNSTABLE_API']
|
|
endif
|
|
|
|
executable('ges-launch-@0@'.format(apiversion),
|
|
'ges-validate.c', 'ges-launch.c', 'ges-launcher.c', 'utils.c',
|
|
c_args : [ges_tool_args],
|
|
dependencies : deps,
|
|
install: true
|
|
)
|
|
|
|
install_man('ges-launch-1.0.1')
|