meson: Use / instead of join_paths for vulkan

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7091>
This commit is contained in:
Nirbheek Chauhan 2024-06-23 04:11:48 +05:30
parent 54a6643986
commit 5c41d387e3

View file

@ -352,7 +352,7 @@ install_headers(vulkan_headers, subdir : 'gstreamer-1.0/gst/vulkan')
configure_file(input : 'gstvkconfig.h.meson',
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)
glib_mkenums = find_program('glib-mkenums')
@ -361,7 +361,7 @@ vulkan_enumtypes_h = custom_target('gstvulkanenum_h',
output : 'vulkan-enumtypes.h',
input : vulkan_headers,
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@'])
vulkan_enumtypes_c = custom_target('gstvulkanenum_c',