Files
third_party_tinyalsa/examples/meson.build
T
Tim-Philipp Müller 230a291494 Add support for Meson as build system
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
2018-12-15 20:16:03 +00:00

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