aboutsummaryrefslogtreecommitdiff
path: root/compilers.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-03-09 19:39:12 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-03-09 19:39:12 +0200
commit48477102c9791ba35b61e5fc76b2e615df9bbd44 (patch)
treec8a5d3db744e584dc3ed2338c363c2b710d326fc /compilers.py
parent6e6ac02eaf265c6688c528175bce71ea45549ca7 (diff)
downloadmeson-48477102c9791ba35b61e5fc76b2e615df9bbd44.zip
meson-48477102c9791ba35b61e5fc76b2e615df9bbd44.tar.gz
meson-48477102c9791ba35b61e5fc76b2e615df9bbd44.tar.bz2
Now can compile all Qt5 tests with module.
Diffstat (limited to 'compilers.py')
-rw-r--r--compilers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilers.py b/compilers.py
index d08b612..9b9c2c8 100644
--- a/compilers.py
+++ b/compilers.py
@@ -21,7 +21,7 @@ from coredata import MesonException
about. To support a new compiler, add its information below.
Also add corresponding autodetection code in environment.py."""
-header_suffixes = ['h', 'hh', 'hpp', 'hxx', 'H']
+header_suffixes = ['h', 'hh', 'hpp', 'hxx', 'H', 'moc']
cpp_suffixes = ['cc', 'cpp', 'cxx', 'h', 'hh', 'hpp', 'hxx', 'c++']
c_suffixes = ['c']
clike_suffixes = c_suffixes + cpp_suffixes