mirror of
https://github.com/openharmony/third_party_tinyalsa.git
synced 2026-07-18 21:34:26 -04:00
230a291494
The Meson build system is being adopted by projects such as GNOME, PulseAudio, GStreamer, VLC, systemd, Mesa, Wayland, X.org, and many others. Having a meson build upstream in tinyalsa would allow for easy use of tinyalsa as a Meson subproject in other projects. https://mesonbuild.com
10 lines
256 B
Meson
10 lines
256 B
Meson
utils = ['tinyplay', 'tinycap', 'tinymix', 'tinypcminfo']
|
|
|
|
foreach util : utils
|
|
executable(util, '@0@.c'.format(util),
|
|
include_directories: tinyalsa_includes,
|
|
link_with: tinyalsa,
|
|
install: true)
|
|
install_man('@0@.1'.format(util))
|
|
endforeach
|