There were 2 version of it, apiversion and api_version, I chose the one with most occurencies: `api_version` Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8178>
11 lines
372 B
Meson
11 lines
372 B
Meson
bash_helper_conf = configuration_data()
|
|
bash_helper_conf.set('GST_COMPLETION_HELPER_INSTALLED',
|
|
join_paths(prefix, helpers_install_dir, 'gst-completion-helper'))
|
|
bash_helper_conf.set('GST_API_VERSION', api_version)
|
|
|
|
configure_file(input : 'gst.in',
|
|
output : 'gst',
|
|
install_dir : bash_helpers_dir,
|
|
configuration : bash_helper_conf,
|
|
install_tag : 'bin')
|