mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +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',
|
||||
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',
|
||||
|
|
Loading…
Reference in a new issue