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.
8 lines
235 B
8 lines
235 B
6 years ago
|
project('submodule single level', 'fortran')
|
||
|
|
||
|
hier2 = executable('single', 'parent.f90','child.f90')
|
||
|
test('single-level hierarchy', hier2)
|
||
|
|
||
|
hierN = executable('multi', 'a1.f90', 'a2.f90', 'a3.f90')
|
||
|
test('multi-level hierarchy', hierN)
|