mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -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.
7 lines
283 B
Meson
7 lines
283 B
Meson
volume_sources = ['volume.c', 'plugin.c']
|
|
|
|
volumelib = shared_library('spa-volume',
|
|
volume_sources,
|
|
include_directories : [spa_inc],
|
|
install : true,
|
|
install_dir : spa_plugindir / 'volume')
|