aboutsummaryrefslogtreecommitdiff
path: root/manual tests/6 hg wrap/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'manual tests/6 hg wrap/meson.build')
-rw-r--r--manual tests/6 hg wrap/meson.build10
1 files changed, 10 insertions, 0 deletions
diff --git a/manual tests/6 hg wrap/meson.build b/manual tests/6 hg wrap/meson.build
new file mode 100644
index 0000000..c7ac004
--- /dev/null
+++ b/manual tests/6 hg wrap/meson.build
@@ -0,0 +1,10 @@
+project('Mercurial outcheckker', 'c')
+
+sp = subproject('samplesubproject')
+
+exe = executable('gitprog', 'prog.c',
+include_directories : sp.get_variable('subproj_inc'),
+link_with : sp.get_variable('subproj_lib'),
+)
+
+test('maintest', exe)