aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/173 identical target name in subproject flat layout/meson.build
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/173 identical target name in subproject flat layout/meson.build')
-rw-r--r--test cases/common/173 identical target name in subproject flat layout/meson.build11
1 files changed, 11 insertions, 0 deletions
diff --git a/test cases/common/173 identical target name in subproject flat layout/meson.build b/test cases/common/173 identical target name in subproject flat layout/meson.build
new file mode 100644
index 0000000..d859fda
--- /dev/null
+++ b/test cases/common/173 identical target name in subproject flat layout/meson.build
@@ -0,0 +1,11 @@
+project('subproject targets', 'c')
+
+# Idea behind this test is to create targets with identical name
+# but different output files. We can do this by choosing different
+# name_prefix of libraries. Target id does not depend on name_prefix.
+
+main_foo = static_library('foo', 'foo.c', name_prefix : 'main')
+subproj_foo = subproject('subproj').get_variable('foo')
+
+exe = executable('prog', 'main.c', link_with : [main_foo, subproj_foo])
+test('main test', exe)