build-sys: First pass at a meson-ified build system
authorArun Raghavan <arun@arunraghavan.net>
Mon, 31 Jul 2017 11:37:36 +0000 (12:37 +0100)
committerArun Raghavan <arun@arunraghavan.net>
Thu, 21 Jun 2018 00:20:29 +0000 (05:50 +0530)
commit114cdfbdde88a3454c4f8bde2c419f2b2e0f070d
tree065c7dfdc5c9f867dd0f39ba999b5f9fda64c5f8
parent04361ee0d2b1583dc65b5047a3002d1c03b3342f
build-sys: First pass at a meson-ified build system

This is a working implementation of a build with meson. The server,
utils, and most modules build with this, and it is possible to run from
a build tree and play/capture audio on ALSA devices.

There are a number of FIXMEs, of course, and a number of features that
need to be enabled (modules, dependencies, installation, etc.), but this
should provide everything we need to get there relatively quickly.

To use this, install meson (distro package, or mesonbuild.com) and run:

  $ cd <pulseaudio src dir>
  $ meson <builddir>
  $ ninja -C <builddir>
14 files changed:
meson.build [new file with mode: 0644]
meson_options.txt [new file with mode: 0644]
src/daemon/daemon-conf.c
src/daemon/main.c
src/daemon/meson.build [new file with mode: 0644]
src/meson.build [new file with mode: 0644]
src/modules/alsa/meson.build [new file with mode: 0644]
src/modules/meson.build [new file with mode: 0644]
src/modules/module-role-cork.c
src/modules/module-role-ducking.c
src/pulse/meson.build [new file with mode: 0644]
src/pulsecore/meson.build [new file with mode: 0644]
src/pulsecore/module.c
src/utils/meson.build [new file with mode: 0644]