diff options
Diffstat (limited to 'test cases/common/163 subdir if_found/meson.build')
-rw-r--r-- | test cases/common/163 subdir if_found/meson.build | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test cases/common/163 subdir if_found/meson.build b/test cases/common/163 subdir if_found/meson.build new file mode 100644 index 0000000..2c640cf --- /dev/null +++ b/test cases/common/163 subdir if_found/meson.build @@ -0,0 +1,11 @@ +project('subdir if found', 'c') + +found_dep = declare_dependency() +not_found_dep = dependency('nonexisting', required : false) + +subdir('nonexisting_dir', if_found : not_found_dep) + +variable = 3 + +subdir('subdir', if_found : found_dep) +assert(variable == 5, 'Subdir was not properly entered.') |