mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -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.
8 lines
383 B
Meson
8 lines
383 B
Meson
audiotestsrc_sources = ['audiotestsrc.c', 'plugin.c']
|
|
|
|
audiotestsrclib = shared_library('spa-audiotestsrc',
|
|
audiotestsrc_sources,
|
|
include_directories : [spa_inc],
|
|
dependencies : [mathlib, ],
|
|
install : true,
|
|
install_dir : spa_plugindir / 'audiotestsrc')
|