aboutsummaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-03-09 17:16:32 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2015-03-09 17:16:32 +0200
commit6e6ac02eaf265c6688c528175bce71ea45549ca7 (patch)
tree4f1436e628289ac43b950be8a73c64ac5382e730 /build.py
parent3f46cd7fb30e3a478c44cac565d2ae12c72a0c25 (diff)
downloadmeson-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.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/build.py b/build.py
index 3cce771..5163d24 100644
--- a/build.py
+++ b/build.py
@@ -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: