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 /run_tests.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 'run_tests.py')
| -rwxr-xr-x | run_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py index 15e643a3c..ec58ac066 100755 --- a/run_tests.py +++ b/run_tests.py @@ -34,7 +34,8 @@ from mesonbuild import mesonmain from mesonbuild import mtest from mesonbuild import mlog from mesonbuild.environment import Environment, detect_ninja -from mesonbuild.coredata import backendlist, version as meson_version, OptionKey +from mesonbuild.coredata import backendlist, version as meson_version +from mesonbuild.mesonlib import OptionKey NINJA_1_9_OR_NEWER = False NINJA_CMD = None |
