pipewire/spa/plugins/vulkan/meson.build
columbarius ea2a2c47c7 vulkan: split vulkan-utils into generic and compute part
This commit should just shuffle code around with no functional changes.
The goal is to ease development of simple vulkan nodes by providing
generic helpers.
2023-08-31 10:08:06 +00:00

13 lines
320 B
Meson

spa_vulkan_sources = [
'plugin.c',
'vulkan-compute-filter.c',
'vulkan-compute-source.c',
'vulkan-compute-utils.c',
'vulkan-utils.c'
]
spa_vulkan = shared_library('spa-vulkan',
spa_vulkan_sources,
dependencies : [ spa_dep, vulkan_dep, mathlib ],
install : true,
install_dir : spa_plugindir / 'vulkan')