Add a very simple test program

Not quite a unit test, it looks more like an example
but still something.
This commit is contained in:
King_DuckZ 2021-02-02 14:04:27 +01:00
commit 3c318d6771
8 changed files with 119 additions and 0 deletions

7
test/unit/meson.build Normal file
View file

@ -0,0 +1,7 @@
exec_target = executable(meson.project_name() + '_unit',
'main.cpp',
install: false,
dependencies: [wrenpp_dep],
)
test(meson.project_name() + ' unit test', exec_target)