mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
Use SPA_PLUGIN_DIR to get the plugin path. Install plugins in subdirectory to make it match the build tree.
8 lines
377 B
Meson
8 lines
377 B
Meson
volume_sources = ['volume.c', 'plugin.c']
|
|
|
|
volumelib = shared_library('spa-volume',
|
|
volume_sources,
|
|
include_directories : [spa_inc, spa_libinc],
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/spa/volume'.format(get_option('libdir')))
|