summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2017-05-23 17:13:18 +0100
committerCarlos Garnacho <carlosg@gnome.org>2017-08-09 17:12:02 +0200
commit4f31ee048268b03eda4c8bd631bd44bebe1ccfcb (patch)
treed43a320d31a0f57d3fb4e2382bd9d4c79b366320 /tests
parent213a8c015b0d233dc32ca3b2699da71c706958a7 (diff)
downloadlibmediaart-4f31ee048268b03eda4c8bd631bd44bebe1ccfcb.tar.gz
Meson build instructions for libmediaart
These are hopefully complete already. I have compared an Autotools-built and a Meson-built install of libmediaart and found only the following differences: * libmediaart-2.0.la isn't generated by Meson * External references in the gtk-doc documentation are relative with Meson and absolute with Autotools * Some changes in generated .vapi file and .pc file https://bugzilla.gnome.org/show_bug.cgi?id=783562
Diffstat (limited to 'tests')
-rw-r--r--tests/meson.build7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/meson.build b/tests/meson.build
new file mode 100644
index 0000000..28834c0
--- /dev/null
+++ b/tests/meson.build
@@ -0,0 +1,7 @@
+mediaart_test = executable('mediaart-test',
+ 'mediaarttest.c',
+ dependencies: libmediaart_dep,
+)
+
+test('mediaart', mediaart_test,
+ env: 'G_TEST_SRCDIR=' + meson.current_source_dir())