summaryrefslogtreecommitdiffstats
path: root/test/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test/meson.build')
-rw-r--r--test/meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/meson.build b/test/meson.build
new file mode 100644
index 0000000..a3fbf0b
--- /dev/null
+++ b/test/meson.build
@@ -0,0 +1,9 @@
+test_filenames = [
+ 'main.c',
+ 'test.c',
+ 'dummy.c'
+ ]
+
+test_sources = files(test_filenames)
+test_e = executable('test executable', test_sources, include_directories : inc)
+test('dummy', test_e, args : ['dummy', 'placeholder'])