mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
ges: tools: fix duplicate ges_tools definition in meson.build
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5312>
This commit is contained in:
parent
4a857fbf87
commit
600b626472
1 changed files with 2 additions and 10 deletions
|
@ -9,20 +9,12 @@ endif
|
|||
|
||||
ges_launch_files = files('ges-validate.c', 'ges-launch.c', 'ges-launcher.c', 'utils.c', 'ges-launcher-kb.c')
|
||||
man_page = files('ges-launch-1.0.1')
|
||||
gst_tools = {'ges-launch':
|
||||
{
|
||||
'files': ges_launch_files,
|
||||
'deps': deps,
|
||||
'extra_c_args': ges_tool_args,
|
||||
'man_page': man_page,
|
||||
}
|
||||
}
|
||||
|
||||
gst_tools = {
|
||||
'ges-launch': {
|
||||
'files': ges_launch_files,
|
||||
'deps': deps,
|
||||
'extra_c_args': [ges_tool_args] + ['-DG_LOG_DOMAIN="ges-launch-@0@"'.format(apiversion)]
|
||||
'extra_c_args': [ges_tool_args] + ['-DG_LOG_DOMAIN="ges-launch-@0@"'.format(apiversion)],
|
||||
'man_page': man_page,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue