aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/49 introspection/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/unit/49 introspection/meson.build')
-rw-r--r--test cases/unit/49 introspection/meson.build14
1 files changed, 14 insertions, 0 deletions
diff --git a/test cases/unit/49 introspection/meson.build b/test cases/unit/49 introspection/meson.build
new file mode 100644
index 0000000..14d880b
--- /dev/null
+++ b/test cases/unit/49 introspection/meson.build
@@ -0,0 +1,14 @@
+project('introspection', ['c', 'cpp'], version: '1.2.3', default_options: ['cpp_std=c++11', 'buildtype=debug'])
+
+dep1 = dependency('threads')
+
+subdir('sharedlib')
+subdir('staticlib')
+
+t1 = executable('test1', 't1.cpp', link_with: [sharedlib], install: true)
+t2 = executable('test2', 't2.cpp', link_with: [staticlib])
+t3 = executable('test3', 't3.cpp', link_with: [sharedlib, staticlib], dependencies: [dep1])
+
+test('test case 1', t1)
+test('test case 2', t2)
+benchmark('benchmark 1', t3)