1
0
Fork 0
pipewire/spa/plugins/v4l2/meson.build
Daniel Baumann 6b016a712f
Adding upstream version 1.4.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:40:42 +02:00

19 lines
633 B
Meson

v4l2_sources = ['v4l2.c',
'v4l2-device.c',
'v4l2-source.c']
v4l2_dependencies = [ spa_dep, libinotify_dep, mathlib ]
if libudev_dep.found()
v4l2_sources += [ 'v4l2-udev.c' ]
v4l2_dependencies += [ libudev_dep ]
if logind_dep.found()
v4l2_dependencies += [ logind_dep ]
endif
endif
v4l2lib = shared_library('spa-v4l2',
v4l2_sources,
include_directories : [ configinc ],
dependencies : v4l2_dependencies,
install : true,
install_dir : spa_plugindir / 'v4l2')