From edf1a21722ef172d79e9ba2e9367df3d6e566b4f Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Tue, 27 Apr 2021 10:19:57 -0700 Subject: compilers: Expose Cython compiler --- mesonbuild/compilers/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index 60cfdfe..bd30b9b 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 -- cgit v1.1