diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-04-27 10:19:57 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2021-06-07 09:16:18 -0700 |
commit | edf1a21722ef172d79e9ba2e9367df3d6e566b4f (patch) | |
tree | 50e4ee49057b386fd456971b22cecfb158d69ed8 | |
parent | e9681b463dc18bbb4d8ea949b970d070e3fa90ce (diff) | |
download | meson-edf1a21722ef172d79e9ba2e9367df3d6e566b4f.zip meson-edf1a21722ef172d79e9ba2e9367df3d6e566b4f.tar.gz meson-edf1a21722ef172d79e9ba2e9367df3d6e566b4f.tar.bz2 |
compilers: Expose Cython compiler
-rw-r--r-- | mesonbuild/compilers/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |