diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index 60cfdfed8..bd30b9bbc 100644 --- a/mesonbuild/compilers/__init__.py +++ b/mesonbuild/compilers/__init__.py @@ -107,6 +107,7 @@ __all__ = [ 'VisualStudioCCompiler', 'VisualStudioCPPCompiler', 'CLikeCompiler', + 'CythonCompiler', ] # Bring symbols from each module into compilers sub-package namespace @@ -213,3 +214,4 @@ from .mixins.gnu import GnuCompiler, GnuLikeCompiler from .mixins.intel import IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler from .mixins.clang import ClangCompiler from .mixins.clike import CLikeCompiler +from .cython import CythonCompiler