From 7b6e527f440cd7e6f8be2b07cee320ee6ca18786 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 29 Apr 2024 06:41:38 +0200 Subject: Adding upstream version 1.0.1. Signed-off-by: Daniel Baumann --- .../124 subproject sandbox violation/subprojects/subproj1/file.txt | 0 .../subprojects/subproj1/meson.build | 4 ++++ .../subprojects/subproj1/nested/meson.build | 5 +++++ .../124 subproject sandbox violation/subprojects/subproj2/file.txt | 0 .../subprojects/subproj2/meson.build | 7 +++++++ .../subprojects/subproj2/nested/meson.build | 0 .../124 subproject sandbox violation/subprojects/subproj3/file.txt | 0 .../subprojects/subproj3/meson.build | 3 +++ 8 files changed, 19 insertions(+) create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj1/file.txt create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj1/meson.build create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj1/nested/meson.build create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj2/file.txt create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj2/meson.build create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj2/nested/meson.build create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj3/file.txt create mode 100644 test cases/failing/124 subproject sandbox violation/subprojects/subproj3/meson.build (limited to 'test cases/failing/124 subproject sandbox violation/subprojects') diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/file.txt b/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/file.txt new file mode 100644 index 0000000..e69de29 diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/meson.build b/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/meson.build new file mode 100644 index 0000000..bd33bf3 --- /dev/null +++ b/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/meson.build @@ -0,0 +1,4 @@ +project('subproj1') + +install_data('file.txt') +subdir('nested') diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/nested/meson.build b/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/nested/meson.build new file mode 100644 index 0000000..038c139 --- /dev/null +++ b/test cases/failing/124 subproject sandbox violation/subprojects/subproj1/nested/meson.build @@ -0,0 +1,5 @@ +d = declare_dependency( + variables: [ + 'dir=@0@'.format(meson.current_source_dir()), + ] +) diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/file.txt b/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/file.txt new file mode 100644 index 0000000..e69de29 diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/meson.build b/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/meson.build new file mode 100644 index 0000000..a6032aa --- /dev/null +++ b/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/meson.build @@ -0,0 +1,7 @@ +project('subproj1') + +d = declare_dependency( + variables: [ + 'dir=@0@'.format(meson.current_source_dir()), + ] +) diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/nested/meson.build b/test cases/failing/124 subproject sandbox violation/subprojects/subproj2/nested/meson.build new file mode 100644 index 0000000..e69de29 diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj3/file.txt b/test cases/failing/124 subproject sandbox violation/subprojects/subproj3/file.txt new file mode 100644 index 0000000..e69de29 diff --git a/test cases/failing/124 subproject sandbox violation/subprojects/subproj3/meson.build b/test cases/failing/124 subproject sandbox violation/subprojects/subproj3/meson.build new file mode 100644 index 0000000..c4fa64c --- /dev/null +++ b/test cases/failing/124 subproject sandbox violation/subprojects/subproj3/meson.build @@ -0,0 +1,3 @@ +project('subproj2') + +install_data('file.txt') -- cgit v1.2.3