pipewire/spa/plugins/v4l2/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

10 lines
390 B
Meson

v4l2_sources = ['v4l2.c',
'v4l2-device.c',
'v4l2-udev.c',
'v4l2-source.c']
v4l2lib = shared_library('spa-v4l2',
v4l2_sources,
dependencies : [ spa_dep, libudev_dep, libinotify_dep ],
install : true,
install_dir : spa_plugindir / 'v4l2')