pipewire/spa/plugins/v4l2/meson.build
Peter Hutterer 223f20709d meson: replace join_paths(a, b) with a / b
More readable and from the meson reference manual:
(since 0.49.0) Using the/ operator on strings is equivalent to calling join_paths.
2021-04-15 06:57:00 +00:00

11 lines
428 B
Meson

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