diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-20 19:35:42 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-03-20 19:35:42 +0200 |
commit | 79de463993fb8201edd389df1626fec841f403d6 (patch) | |
tree | 93ea418949913504a023cd8285328d820862e5c5 /mesonbuild/mgui.py | |
parent | 0c63f75aafd664ad4d5a478cdbd9f3e8fd582736 (diff) | |
download | meson-79de463993fb8201edd389df1626fec841f403d6.zip meson-79de463993fb8201edd389df1626fec841f403d6.tar.gz meson-79de463993fb8201edd389df1626fec841f403d6.tar.bz2 |
Converted precompiled headers into a base option.
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 |