The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
641 B
12 lines
641 B
5 years ago
|
project('subbie')
|
||
|
|
||
|
fs = import('fs')
|
||
|
|
||
|
assert(fs.exists('subprojectfile.txt'), 'Subproject root file not found.')
|
||
4 years ago
|
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')
|
||
4 years ago
|
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')
|
||
5 years ago
|
|
||
|
subdir('subsub')
|