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/compilers.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/compilers.py')
| -rw-r--r-- | mesonbuild/compilers/compilers.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index acf38230e..40bb9e693 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -25,14 +25,13 @@ from .. import mesonlib from ..linkers import LinkerEnvVarsMixin from ..mesonlib import ( EnvironmentException, MachineChoice, MesonException, - Popen_safe, split_args, LibType, TemporaryDirectoryWinProof + Popen_safe, split_args, LibType, TemporaryDirectoryWinProof, OptionKey, ) from ..envconfig import ( get_env_var ) from ..arglist import CompilerArgs -from ..coredata import OptionKey if T.TYPE_CHECKING: from ..build import BuildTarget |
