diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-21 20:10:58 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2020-11-21 20:10:58 +0200 |
commit | d757b897c5b6f06e58630691e68b7717004c3af7 (patch) | |
tree | eb71af69692ad3ceebdf93a6b87af6537b588dc5 /mesonbuild | |
parent | b5df58ab12e4ef665100088b4d1f05351fa665d3 (diff) | |
download | meson-d757b897c5b6f06e58630691e68b7717004c3af7.zip meson-d757b897c5b6f06e58630691e68b7717004c3af7.tar.gz meson-d757b897c5b6f06e58630691e68b7717004c3af7.tar.bz2 |
Create unit test for C++ modules and accept ixx as C++ source extension.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 4e9b86b..e139c49 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -55,7 +55,7 @@ lib_suffixes = ('a', 'lib', 'dll', 'dll.a', 'dylib', 'so') # type: T.Tuple[str, # This means we can't include .h headers here since they could be C, C++, ObjC, etc. lang_suffixes = { 'c': ('c',), - 'cpp': ('cpp', 'cc', 'cxx', 'c++', 'hh', 'hpp', 'ipp', 'hxx', 'ino'), + 'cpp': ('cpp', 'cc', 'cxx', 'c++', 'hh', 'hpp', 'ipp', 'hxx', 'ino', 'ixx'), 'cuda': ('cu',), # f90, f95, f03, f08 are for free-form fortran ('f90' recommended) # f, for, ftn, fpp are for fixed-form fortran ('f' or 'for' recommended) |