From 3117096ab99c73f9a51ed46b9447b640d31a652f Mon Sep 17 00:00:00 2001 From: Gediminas Jakutis Date: Mon, 18 Mar 2019 01:49:39 +0200 Subject: Initial commit. This creates a working buildable dummy template to build the project upon. Everything save for the build system are demonstrational dummies and everything including the build system is written to be easily extendable. This commit closes Ticket 5. Signed-off-by: Gediminas Jakutis --- test/meson.build | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 test/meson.build (limited to 'test/meson.build') 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']) -- cgit v1.2.3