aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/83 identical target name in subproject
diff options
context:
space:
mode:
authorAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
committerAngelos Mouzakitis <a.mouzakitis@virtualopensystems.com>2023-10-10 14:33:42 +0000
commitaf1a266670d040d2f4083ff309d732d648afba2a (patch)
tree2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/common/83 identical target name in subproject
parente02cda008591317b1625707ff8e115a4841aa889 (diff)
Add submodule dependency filesHEADmaster
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/common/83 identical target name in subproject')
-rw-r--r--meson/test cases/common/83 identical target name in subproject/bar.c6
-rw-r--r--meson/test cases/common/83 identical target name in subproject/meson.build9
-rw-r--r--meson/test cases/common/83 identical target name in subproject/subprojects/foo/bar.c6
-rw-r--r--meson/test cases/common/83 identical target name in subproject/subprojects/foo/meson.build7
-rw-r--r--meson/test cases/common/83 identical target name in subproject/subprojects/foo/true.py4
-rw-r--r--meson/test cases/common/83 identical target name in subproject/true.py4
6 files changed, 36 insertions, 0 deletions
diff --git a/meson/test cases/common/83 identical target name in subproject/bar.c b/meson/test cases/common/83 identical target name in subproject/bar.c
new file mode 100644
index 000000000..f1bd822dc
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/bar.c
@@ -0,0 +1,6 @@
+#include<stdio.h>
+
+int main(void) {
+ printf("I'm a main project bar.\n");
+ return 0;
+}
diff --git a/meson/test cases/common/83 identical target name in subproject/meson.build b/meson/test cases/common/83 identical target name in subproject/meson.build
new file mode 100644
index 000000000..64b436347
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/meson.build
@@ -0,0 +1,9 @@
+project('toplevel bar', 'c')
+
+subproject('foo')
+
+true_cmd = find_program('true.py')
+
+executable('bar', 'bar.c')
+run_target('nop', command : [true_cmd])
+custom_target('cus', output: ['cus.c'], command : [true_cmd])
diff --git a/meson/test cases/common/83 identical target name in subproject/subprojects/foo/bar.c b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/bar.c
new file mode 100644
index 000000000..5e7006baf
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/bar.c
@@ -0,0 +1,6 @@
+#include<stdio.h>
+
+int main(void) {
+ printf("I'm a subproject bar.\n");
+ return 0;
+}
diff --git a/meson/test cases/common/83 identical target name in subproject/subprojects/foo/meson.build b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/meson.build
new file mode 100644
index 000000000..94b235c14
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/meson.build
@@ -0,0 +1,7 @@
+project('subfoo', 'c')
+
+true_cmd = find_program('true.py')
+
+executable('bar', 'bar.c')
+run_target('nop', command : [true_cmd])
+custom_target('cus', output: ['cus.c'], command : [true_cmd])
diff --git a/meson/test cases/common/83 identical target name in subproject/subprojects/foo/true.py b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/true.py
new file mode 100644
index 000000000..ddcac9e49
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/subprojects/foo/true.py
@@ -0,0 +1,4 @@
+#!/usr/bin/env python3
+
+if __name__ == '__main__':
+ pass
diff --git a/meson/test cases/common/83 identical target name in subproject/true.py b/meson/test cases/common/83 identical target name in subproject/true.py
new file mode 100644
index 000000000..ddcac9e49
--- /dev/null
+++ b/meson/test cases/common/83 identical target name in subproject/true.py
@@ -0,0 +1,4 @@
+#!/usr/bin/env python3
+
+if __name__ == '__main__':
+ pass