diff options
Diffstat (limited to 'mesonbuild/mgui.py')
-rw-r--r-- | mesonbuild/mgui.py | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/mesonbuild/mgui.py b/mesonbuild/mgui.py index 6e57ce7..ffd1800 100644 --- a/mesonbuild/mgui.py +++ b/mesonbuild/mgui.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -# Copyright 2013-2015 The Meson development team +# Copyright 2013-2016 The Meson development team # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -249,14 +249,6 @@ class OptionForm: strip.setChecked(self.coredata.get_builtin_option('strip')) strip.stateChanged.connect(self.strip_changed) self.form.addRow('Strip on install', strip) - coverage = QCheckBox("") - coverage.setChecked(self.coredata.get_builtin_option('coverage')) - coverage.stateChanged.connect(self.coverage_changed) - self.form.addRow('Enable coverage', coverage) - pch = QCheckBox("") - pch.setChecked(self.coredata.get_builtin_option('use_pch')) - pch.stateChanged.connect(self.pch_changed) - self.form.addRow('Enable pch', pch) unity = QCheckBox("") unity.setChecked(self.coredata.get_builtin_option('unity')) unity.stateChanged.connect(self.unity_changed) @@ -317,20 +309,6 @@ class OptionForm: ns = True self.coredata.strip = ns - def coverage_changed(self, newState): - if newState == 0: - ns = False - else: - ns = True - self.coredata.coverage = ns - - def pch_changed(self, newState): - if newState == 0: - ns = False - else: - ns = True - self.coredata.use_pch = ns - def unity_changed(self, newState): if newState == 0: ns = False |