compilers: Expose Cython compiler

pull/8706/head
Dylan Baker 4 years ago
parent e9681b463d
commit edf1a21722
  1. 2
      mesonbuild/compilers/__init__.py

@ -107,6 +107,7 @@ __all__ = [
'VisualStudioCCompiler', 'VisualStudioCCompiler',
'VisualStudioCPPCompiler', 'VisualStudioCPPCompiler',
'CLikeCompiler', 'CLikeCompiler',
'CythonCompiler',
] ]
# Bring symbols from each module into compilers sub-package namespace # 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.intel import IntelGnuLikeCompiler, IntelVisualStudioLikeCompiler
from .mixins.clang import ClangCompiler from .mixins.clang import ClangCompiler
from .mixins.clike import CLikeCompiler from .mixins.clike import CLikeCompiler
from .cython import CythonCompiler

Loading…
Cancel
Save