aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/depscan.py
AgeCommit message (Collapse)AuthorFilesLines
2021-03-04mass rewrite of string formatting to use f-strings everywhereEli Schwartz1-5/+5
performed by running "pyupgrade --py36-plus" and committing the results
2021-03-04raw string literals are next to godlinessEli Schwartz1-2/+2
Invalid escape sequences are deprecated and will be removed from a future version of python. Use r"" to define them so they remain readable.
2021-01-20Use case-insensitive suffix check for fortranJonas Lundholm Bertelsen1-2/+2
In Fortran it is common to use capital F in the suffix (eg. '.F90') if the source file makes use of preprocessor statements. Such files should probably be treated like all other fortran files by meson. Case insensitivity for suffixes was already implemented several places in meson before this. So most likely, the few places changed here were oversights anyway.
2021-01-13Fix misspellsAntonin Décimo1-1/+1
Signed-off-by: Antonin Décimo <antonin.decimo@gmail.com>
2020-12-25Extend the C++ module scanner to handle Fortran, too.Jussi Pakkanen1-19/+129
2020-12-13Add mypy annotations.Jussi Pakkanen1-11/+13
2020-12-13Scan all C++ sources and ignore everything else.Jussi Pakkanen1-0/+2
2020-12-13C++ module compilation works for a simple project.Jussi Pakkanen1-0/+87