diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-25 14:03:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-25 14:03:02 +0200 |
| commit | 8a68dc0179bc63303a8ef8c4a339cc01ca406084 (patch) | |
| tree | 9ee89c663207c3f5cfd5e16f42ff24ea16727879 /mesonbuild/compilers/__init__.py | |
| parent | f1ce7af2d5866b5207c1f4036477a175f433655c (diff) | |
| parent | 67f3f803620cdf5cbabd2757211cb4c969ccf41f (diff) | |
| download | meson-8a68dc0179bc63303a8ef8c4a339cc01ca406084.tar.gz | |
Merge pull request #3132 from mesonbuild/csc
Visual Studio C# compiler support and some fixes
Diffstat (limited to 'mesonbuild/compilers/__init__.py')
| -rw-r--r-- | mesonbuild/compilers/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/compilers/__init__.py b/mesonbuild/compilers/__init__.py index f09f25277..84c87fb09 100644 --- a/mesonbuild/compilers/__init__.py +++ b/mesonbuild/compilers/__init__.py @@ -67,6 +67,7 @@ __all__ = [ 'JavaCompiler', 'LLVMDCompiler', 'MonoCompiler', + 'VisualStudioCsCompiler', 'NAGFortranCompiler', 'ObjCCompiler', 'ObjCPPCompiler', @@ -127,7 +128,7 @@ from .cpp import ( IntelCPPCompiler, VisualStudioCPPCompiler, ) -from .cs import MonoCompiler +from .cs import MonoCompiler, VisualStudioCsCompiler from .d import ( DCompiler, DmdDCompiler, |
