pipewire/spa/plugins/vulkan/meson.build
Barnabás Pőcze 2b110af366 treewide: meson.build: use dependency variable for SPA
Use `spa_dep` everywhere instead of `spa_inc`,
and remove `spa_inc` altogether.
2021-12-28 18:34:06 +01:00

11 lines
263 B
Meson

spa_vulkan_sources = [
'plugin.c',
'vulkan-compute-source.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')