aboutsummaryrefslogtreecommitdiff
path: root/manual tests/6 hg wrap/meson.build
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-11-20 00:50:25 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-11-20 00:50:25 +0200
commitdf4af2d122111651468617b4feb34ccc91132bad (patch)
tree181c43fa030a079231263c7d8dda003de2adf971 /manual tests/6 hg wrap/meson.build
parent5b00c9b9c0e8f383af7b9c09e897835ca9d52109 (diff)
downloadmeson-df4af2d122111651468617b4feb34ccc91132bad.zip
meson-df4af2d122111651468617b4feb34ccc91132bad.tar.gz
meson-df4af2d122111651468617b4feb34ccc91132bad.tar.bz2
Renamed test to plug hole in numbering.
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)