mirror of
https://github.com/openharmony/third_party_tinyalsa.git
synced 2026-07-18 13:25:09 -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
9 lines
196 B
Meson
9 lines
196 B
Meson
examples = ['pcm-readi', 'pcm-writei']
|
|
|
|
foreach e : examples
|
|
executable(e, '@0@.c'.format(e),
|
|
include_directories: tinyalsa_includes,
|
|
link_with: tinyalsa,
|
|
install: false)
|
|
endforeach
|