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
292 B
8 lines
292 B
5 years ago
|
project('Inclusive', 'fortran',
|
||
|
meson_version: '>= 0.51.1')
|
||
|
|
||
|
hier_exe = executable('include_hierarchy', 'include_hierarchy.f90')
|
||
|
test('Fortran include file hierarchy', hier_exe)
|
||
|
|
||
|
syntax_exe = executable('include_syntax', 'include_syntax.f90')
|
||
|
test('Fortran include file syntax', syntax_exe)
|