build: add meson build system
authorRan Benita <ran234@gmail.com>
Tue, 25 Jul 2017 18:57:42 +0000 (21:57 +0300)
committerRan Benita <ran234@gmail.com>
Mon, 31 Jul 2017 17:53:39 +0000 (20:53 +0300)
commit86434d8498fdc674a8b1c9fe7f9f4b4ca54240a5
tree0485f8ffba44155afa6b0f2b8de122561ea3b79a
parent75ec764ceec9aacddfd34f6066f2d5e7cafc8c51
build: add meson build system

Meson is easier to maintain, much faster, encourages better practices,
and is not built on a pile of shell scripts.

The autotools build system is kept intact for now, in order to ease the
migration. The intention is to remove it sooner rather than later, if
all goes well.

Run `meson build && mesonconf build` to see the configuration options
for the new system. Conversion should be straightforward. Environment
variables like CFLAGS work the same.

If meson is used, xorg-util-macros is not required.

In terms of functionality the two systems have about the same
capabilities. Here are some differences I noticed:

- Meson uses `-g` by default, autotools uses `-g -O2`.

- In autotools the default behavior is to install both static and shared
  versions of the libraries. In meson the user must choose exactly one
  (using -Ddefault_library=static/shared).

  It is possible to workaround if needed (install twice...), but
  hopefully meson will add the option in the future.

- Autotools has builtin ctags/cscope targets, meson doesn't.

  Easy to run the tools directly.

- Meson has builtin benchmarks target. Handy.

- Meson has builtin support for sanitizers/clang-analyzer/lto/pgo/
  coverage etc. Also handy.

Signed-off-by: Ran Benita <ran234@gmail.com>
.gitignore
.travis.yml
PACKAGING
README.md
meson.build [new file with mode: 0644]
meson_options.txt [new file with mode: 0644]