From f180fc7cd655d29d6fdae7e71e2cb6bc8672e823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Thu, 1 Feb 2018 08:35:23 +0100 Subject: build: Port to meson build system meson is a build system focused on speed an ease of use, which helps speeding up the software development. This patch adds meson support along autotools. https://bugzilla.gnome.org/show_bug.cgi?id=793087 --- tests/meson.build | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/meson.build (limited to 'tests') diff --git a/tests/meson.build b/tests/meson.build new file mode 100644 index 00000000..1c29c48e --- /dev/null +++ b/tests/meson.build @@ -0,0 +1,11 @@ +deps = [ + x11_dep, + xtst_dep +] + +exe = executable( + 'shiftkey', + 'shiftkey.c', + include_directories: top_inc, + dependencies: deps +) -- cgit v1.2.1