mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
More readable and from the meson reference manual: (since 0.49.0) Using the/ operator on strings is equivalent to calling join_paths.
11 lines
428 B
Meson
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')
|