diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-09 17:16:32 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-03-09 17:16:32 +0200 |
commit | 6e6ac02eaf265c6688c528175bce71ea45549ca7 (patch) | |
tree | 4f1436e628289ac43b950be8a73c64ac5382e730 /build.py | |
parent | 3f46cd7fb30e3a478c44cac565d2ae12c72a0c25 (diff) | |
download | meson-6e6ac02eaf265c6688c528175bce71ea45549ca7.zip meson-6e6ac02eaf265c6688c528175bce71ea45549ca7.tar.gz meson-6e6ac02eaf265c6688c528175bce71ea45549ca7.tar.bz2 |
Major refactoring to move Qt5 from core into a module. Rules are written but moc/uic/rrc are not generated yet.
Diffstat (limited to 'build.py')
-rw-r--r-- | build.py | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -19,11 +19,7 @@ import mlog import copy, os -known_basic_kwargs = {'ui_files': True, - 'moc_headers' : True, - 'qresources' : True, - 'moc_sources' : True, - 'install' : True, +known_basic_kwargs = {'install' : True, 'c_pch' : True, 'cpp_pch' : True, 'c_args' : True, @@ -78,6 +74,7 @@ class Build: self.pkgconfig_gens = [] self.install_script = None self.install_dirs = [] + self.modules = {} def has_language(self, language): for i in self.compilers: |