aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/common/220 fs module/subprojects/subbie/meson.build
blob: f1e21ea104a7b1827debd92a7c623b597b830ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
project('subbie')

fs = import('fs')

assert(fs.exists('subprojectfile.txt'), 'Subproject root file not found.')
assert(fs.is_samepath(meson.project_source_root(), meson.current_source_dir()), 'is_samepath not detecting same directory')
assert(fs.is_samepath(meson.project_build_root(), meson.current_build_dir()), 'is_samepath not detecting same directory')
assert(fs.is_samepath(meson.global_source_root(), meson.current_source_dir() / '../..'), 'is_samepath not detecting same directory')
assert(fs.is_samepath(meson.global_build_root(), meson.current_build_dir() / '../..'), 'is_samepath not detecting same directory')

subdir('subsub')