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/cpp.py | |
parent | fe973d9fc45581f20fefc41fc0b8eb0066c0129d (diff) | |
download | meson-f9b19e73a5b87a2f3c8506cf19cfd5bbc468e938.zip meson-f9b19e73a5b87a2f3c8506cf19cfd5bbc468e938.tar.gz meson-f9b19e73a5b87a2f3c8506cf19cfd5bbc468e938.tar.bz2 |
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/cpp.py')
-rw-r--r-- | mesonbuild/compilers/cpp.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index 578e362..b94beb6 100644 --- a/mesonbuild/compilers/cpp.py +++ b/mesonbuild/compilers/cpp.py @@ -19,7 +19,7 @@ import typing as T from .. import coredata from .. import mlog -from ..mesonlib import MesonException, MachineChoice, version_compare +from ..mesonlib import MesonException, MachineChoice, version_compare, OptionKey from ..linkers import LinkerEnvVarsMixin from .compilers import ( @@ -41,8 +41,6 @@ from .mixins.elbrus import ElbrusCompiler from .mixins.pgi import PGICompiler from .mixins.emscripten import EmscriptenMixin -from ..coredata import OptionKey - if T.TYPE_CHECKING: from ..coredata import KeyedOptionDictType from ..dependencies import Dependency, ExternalProgram |