diff options
Diffstat (limited to 'manual tests/1 basic/meson.build')
-rw-r--r-- | manual tests/1 basic/meson.build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/manual tests/1 basic/meson.build b/manual tests/1 basic/meson.build new file mode 100644 index 0000000..afdda34 --- /dev/null +++ b/manual tests/1 basic/meson.build @@ -0,0 +1,11 @@ +project('downloader', 'c') + +s = subproject('sqlite') + +e = executable('dtest', 'main.c', +include_directories : s.get_variable('sqinc'), +link_args : ['-pthread', '-ldl'], +c_args : '-pthread', +link_with : s.get_variable('sqlib')) + +test('dltest', e) |