diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2016-04-09 23:53:26 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-12-15 20:16:03 +0000 |
commit | 4b50f5b638015556d93771269258e6894b6b757f (patch) | |
tree | 6f3a80f02b0102dbb01434d0e49a7ff83dee15aa /include | |
parent | 1c13f7cbe1ebee24c2b62d5ba16f2702882da49a (diff) |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/tinyalsa/meson.build | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/tinyalsa/meson.build b/include/tinyalsa/meson.build new file mode 100644 index 0000000..d14b35b --- /dev/null +++ b/include/tinyalsa/meson.build @@ -0,0 +1,10 @@ +tinyalsa_headers = [ + 'asoundlib.h', + 'interval.h', + 'limits.h', + 'mixer.h', + 'pcm.h', + 'version.h' +] + +install_headers(tinyalsa_headers, subdir: 'tinyalsa') |