summaryrefslogtreecommitdiff
path: root/mesonbuild/cmake/__init__.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-10-13 23:38:51 +0300
committerGitHub <noreply@github.com>2020-10-13 23:38:51 +0300
commit3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a (patch)
treee0af9977e708170d136104e4eb056b6f9f31eda0 /mesonbuild/cmake/__init__.py
parent55cf399ff8b9c15300f26dd1a46045dda7d49f98 (diff)
parentf5c9bf96b370832fc1a6e50771e2c171de0cd79d (diff)
downloadmeson-3372c58ca633e2bc7d5b36bcd7e0d14d12e0f82a.tar.gz
Merge pull request #7816 from mensinda/cmCross
cmake: Cross compilation support
Diffstat (limited to 'mesonbuild/cmake/__init__.py')
-rw-r--r--mesonbuild/cmake/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/mesonbuild/cmake/__init__.py b/mesonbuild/cmake/__init__.py
index db7aefd6f..9840a5f4a 100644
--- a/mesonbuild/cmake/__init__.py
+++ b/mesonbuild/cmake/__init__.py
@@ -18,10 +18,12 @@
__all__ = [
'CMakeClient',
'CMakeExecutor',
+ 'CMakeExecScope',
'CMakeException',
'CMakeFileAPI',
'CMakeInterpreter',
'CMakeTarget',
+ 'CMakeToolchain',
'CMakeTraceLine',
'CMakeTraceParser',
'SingleTargetOptions',
@@ -31,10 +33,11 @@ __all__ = [
'cmake_defines_to_args',
]
-from .common import CMakeException, SingleTargetOptions, TargetOptions, cmake_defines_to_args
+from .common import CMakeException, SingleTargetOptions, TargetOptions, cmake_defines_to_args, language_map
from .client import CMakeClient
from .executor import CMakeExecutor
from .fileapi import CMakeFileAPI
from .generator import parse_generator_expressions
-from .interpreter import CMakeInterpreter, language_map
+from .interpreter import CMakeInterpreter
+from .toolchain import CMakeToolchain, CMakeExecScope
from .traceparser import CMakeTarget, CMakeTraceLine, CMakeTraceParser