mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
Use SPA_PLUGIN_DIR to get the plugin path. Install plugins in subdirectory to make it match the build tree.
9 lines
432 B
Meson
9 lines
432 B
Meson
test_sources = ['fakesrc.c', 'fakesink.c', 'plugin.c']
|
|
|
|
testlib = shared_library('spa-test',
|
|
test_sources,
|
|
include_directories : [ spa_inc, spa_libinc],
|
|
dependencies : threads_dep,
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/spa/test'.format(get_option('libdir')))
|