mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
meson: Use / instead of join_paths for vulkan
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7091>
This commit is contained in:
parent
54a6643986
commit
5c41d387e3
1 changed files with 2 additions and 2 deletions
|
@ -352,7 +352,7 @@ install_headers(vulkan_headers, subdir : 'gstreamer-1.0/gst/vulkan')
|
||||||
|
|
||||||
configure_file(input : 'gstvkconfig.h.meson',
|
configure_file(input : 'gstvkconfig.h.meson',
|
||||||
output : 'gstvkconfig.h',
|
output : 'gstvkconfig.h',
|
||||||
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/vulkan'),
|
install_dir : get_option('includedir') / 'gstreamer-1.0/gst/vulkan',
|
||||||
configuration : vulkan_conf)
|
configuration : vulkan_conf)
|
||||||
|
|
||||||
glib_mkenums = find_program('glib-mkenums')
|
glib_mkenums = find_program('glib-mkenums')
|
||||||
|
@ -361,7 +361,7 @@ vulkan_enumtypes_h = custom_target('gstvulkanenum_h',
|
||||||
output : 'vulkan-enumtypes.h',
|
output : 'vulkan-enumtypes.h',
|
||||||
input : vulkan_headers,
|
input : vulkan_headers,
|
||||||
install : true,
|
install : true,
|
||||||
install_dir : join_paths(get_option('includedir'), 'gstreamer-1.0/gst/vulkan/'),
|
install_dir : get_option('includedir') / 'gstreamer-1.0/gst/vulkan',
|
||||||
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
command : [mkenums, glib_mkenums, '@OUTPUT@', '@INPUT@'])
|
||||||
|
|
||||||
vulkan_enumtypes_c = custom_target('gstvulkanenum_c',
|
vulkan_enumtypes_c = custom_target('gstvulkanenum_c',
|
||||||
|
|
Loading…
Reference in a new issue