diff options
Diffstat (limited to 'test/meson.build')
-rw-r--r-- | test/meson.build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build new file mode 100644 index 0000000..49f6870 --- /dev/null +++ b/test/meson.build @@ -0,0 +1,15 @@ +tests = [ + 'utf8' +] + +foreach test_file : tests + t = executable( + test_file, + files(test_file + '.c', 'tap.c'), common_sources, wl_proto_src, wl_proto_headers, + include_directories: ['../src'], + dependencies: [librt, libm, freetype, harfbuzz, cairo, pangocairo, wayland_client, xkbcommon, glib, gio_unix], + install: false + ) + + test(test_file, t, protocol: 'tap') +endforeach |