summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-02-01 08:35:23 +0100
committerBastien Nocera <hadess@hadess.net>2018-02-05 17:42:49 +0100
commitf180fc7cd655d29d6fdae7e71e2cb6bc8672e823 (patch)
treec7552bdd1780262b13f4458cbbff1302b6016c0a /tests
parent8351ff4d451da2004efc36a205e369b3207ecfe6 (diff)
downloadgnome-settings-daemon-f180fc7cd655d29d6fdae7e71e2cb6bc8672e823.tar.gz
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
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build11
1 files changed, 11 insertions, 0 deletions
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
+)