diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-05-05 22:38:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-05 22:38:41 +0300 |
commit | 23f831a67497135091bcb44675ff5a7fb9ce8425 (patch) | |
tree | ee284561d8d053566a13f82b7e9ee447d765db9b /run_unittests.py | |
parent | a0cf7ad3d8fbafacb7146488d8e56c301646aa92 (diff) | |
parent | 541523eebab8f62b182643296deab26a47117f6f (diff) | |
download | meson-23f831a67497135091bcb44675ff5a7fb9ce8425.zip meson-23f831a67497135091bcb44675ff5a7fb9ce8425.tar.gz meson-23f831a67497135091bcb44675ff5a7fb9ce8425.tar.bz2 |
Merge pull request #5339 from dcbaker/clike
Split up the representations of the C and C++ compilers
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/run_unittests.py b/run_unittests.py index 3a473ea..7a7c006 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1939,8 +1939,8 @@ class AllPlatformTests(BasePlatformTests): gnu = mesonbuild.compilers.GnuCompiler clang = mesonbuild.compilers.ClangCompiler intel = mesonbuild.compilers.IntelCompiler - msvc = mesonbuild.compilers.VisualStudioCCompiler - clangcl = mesonbuild.compilers.ClangClCCompiler + msvc = (mesonbuild.compilers.VisualStudioCCompiler, mesonbuild.compilers.VisualStudioCPPCompiler) + clangcl = (mesonbuild.compilers.ClangClCCompiler, mesonbuild.compilers.ClangClCPPCompiler) ar = mesonbuild.linkers.ArLinker lib = mesonbuild.linkers.VisualStudioLinker langs = [('c', 'CC'), ('cpp', 'CXX')] |