diff options
Diffstat (limited to 'mesonbuild/mgui.py')
-rw-r--r-- | mesonbuild/mgui.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/mesonbuild/mgui.py b/mesonbuild/mgui.py index d85fa54..ffd1800 100644 --- a/mesonbuild/mgui.py +++ b/mesonbuild/mgui.py @@ -249,10 +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) - 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) @@ -313,13 +309,6 @@ class OptionForm: ns = True self.coredata.strip = 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 |