diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-12-03 11:37:52 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2021-01-04 12:20:40 -0800 |
| commit | f9b19e73a5b87a2f3c8506cf19cfd5bbc468e938 (patch) | |
| tree | 62a822655f89133babd261a18adc40e3cb44a0fe /mesonbuild/compilers/fortran.py | |
| parent | fe973d9fc45581f20fefc41fc0b8eb0066c0129d (diff) | |
| download | meson-f9b19e73a5b87a2f3c8506cf19cfd5bbc468e938.tar.gz | |
move OptionKey to mesonlib
There's starting to be a lot of things including coredata that coredata
needs to itself include. putting it in mesonlib makes more sense
Diffstat (limited to 'mesonbuild/compilers/fortran.py')
| -rw-r--r-- | mesonbuild/compilers/fortran.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/fortran.py b/mesonbuild/compilers/fortran.py index edd79116b..d65d5853c 100644 --- a/mesonbuild/compilers/fortran.py +++ b/mesonbuild/compilers/fortran.py @@ -17,7 +17,6 @@ import typing as T import subprocess, os from .. import coredata -from ..coredata import OptionKey from .compilers import ( clike_debug_args, Compiler, @@ -32,7 +31,8 @@ from .mixins.elbrus import ElbrusCompiler from .mixins.pgi import PGICompiler from mesonbuild.mesonlib import ( - version_compare, EnvironmentException, MesonException, MachineChoice, LibType + version_compare, EnvironmentException, MesonException, MachineChoice, + LibType, OptionKey, ) if T.TYPE_CHECKING: |
