From 1549e30372756cfdb85379fd8d93c769297ab6e6 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Sat, 11 Mar 2017 10:24:04 -0800 Subject: Add a Meson build system alongside autotools. This is a work in progress that builds Xvfb, Xephyr, Xwayland, Xnest, and Xdmx so far. The outline of Xquartz/Xwin support is in tree, but hasn't been built yet. The unit tests are also not done. The intent is to build this as a complete replacement for the autotools system, then eventually replace autotools. meson is faster to generate the build, faster to run the bulid, shorter to write the build files in, and less error-prone than autotools. v2: Fix indentation nits, move version declaration to project(), use existing meson_options for version-config.h's vendor name/web. Signed-off-by: Eric Anholt Acked-by: Keith Packard Reviewed-by: Peter Hutterer --- dbe/meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dbe/meson.build (limited to 'dbe') diff --git a/dbe/meson.build b/dbe/meson.build new file mode 100644 index 000000000..e10bde199 --- /dev/null +++ b/dbe/meson.build @@ -0,0 +1,10 @@ +srcs_dbe = [ + 'dbe.c', + 'midbe.c', +] + +libxserver_dbe = static_library('libxserver_dbe', + srcs_dbe, + include_directories: inc, + dependencies: common_dep, +) -- cgit v1.2.3