mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
Use SPA_PLUGIN_DIR to get the plugin path. Install plugins in subdirectory to make it match the build tree.
9 lines
505 B
Meson
9 lines
505 B
Meson
videotestsrc_sources = ['videotestsrc.c', 'plugin.c']
|
|
|
|
videotestsrclib = shared_library('spa-videotestsrc',
|
|
videotestsrc_sources,
|
|
include_directories : [ spa_inc, spa_libinc],
|
|
dependencies : threads_dep,
|
|
link_with : spalib,
|
|
install : true,
|
|
install_dir : '@0@/spa/videotestsrc'.format(get_option('libdir')))
|