diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /meson/test cases/common/83 identical target name in subproject | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'meson/test cases/common/83 identical target name in subproject')
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 |