aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/backend/ninjabackend.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-06-11 12:06:29 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-06-22 12:06:10 -0700
commit9d0ad66c29fccd2ff72c2b40da02cdb2b03ccba6 (patch)
treee19e88210892ada6d44282f9ce5a37fa33957a82 /mesonbuild/backend/ninjabackend.py
parent386721f7fd3261ba15004a7f527e9db83e216ace (diff)
downloadmeson-9d0ad66c29fccd2ff72c2b40da02cdb2b03ccba6.zip
meson-9d0ad66c29fccd2ff72c2b40da02cdb2b03ccba6.tar.gz
meson-9d0ad66c29fccd2ff72c2b40da02cdb2b03ccba6.tar.bz2
compilers: Split CompilerArgs into a separate module
I've also moved this out of the compilers pacakge because we're soon going to need it in linkers, and that creates some serious spagetti
Diffstat (limited to 'mesonbuild/backend/ninjabackend.py')
-rw-r--r--mesonbuild/backend/ninjabackend.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index 252f646..b326e3b 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -30,8 +30,9 @@ from .. import build
from .. import mlog
from .. import dependencies
from .. import compilers
+from ..arglist import CompilerArgs
from ..compilers import (
- Compiler, CompilerArgs, CCompiler,
+ Compiler, CCompiler,
DmdDCompiler,
FortranCompiler, PGICCompiler,
VisualStudioCsCompiler,