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.
13 lines
367 B
13 lines
367 B
6 years ago
|
## Fortran submodule support
|
||
|
|
||
|
Initial support for Fortran ``submodule`` was added, where the submodule is in
|
||
|
the same or different file than the parent ``module``.
|
||
|
The submodule hierarchy specified in the source Fortran code `submodule`
|
||
|
statements are used by Meson to resolve source file dependencies.
|
||
|
For example:
|
||
|
|
||
|
```fortran
|
||
|
submodule (ancestor:parent) child
|
||
|
```
|
||
|
|