summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--SConstruct1
-rw-r--r--build/features.py23
2 files changed, 0 insertions, 24 deletions
diff --git a/SConstruct b/SConstruct
index 7a48059c6b..62c190ffab 100644
--- a/SConstruct
+++ b/SConstruct
@@ -45,7 +45,6 @@ available_features = [features.Mad,
features.Opus,
features.Profiling,
features.BuildTime,
- features.QDebug,
features.Verbose,
features.Optimize,
features.FAAD,
diff --git a/build/features.py b/build/features.py
index 086750cad8..baa13f8cde 100644
--- a/build/features.py
+++ b/build/features.py
@@ -680,29 +680,6 @@ class BuildTime(Feature):
build.env.Append(CPPDEFINES='DISABLE_BUILDTIME')
-class QDebug(Feature):
- def description(self):
- return "Debugging message output"
-
- def enabled(self, build):
- build.flags['qdebug'] = util.get_flags(build.env, 'qdebug', 1)
- if build.platform_is_windows:
- if build.build_is_debug:
- # Turn general debugging flag on too if debug build is specified
- build.flags['qdebug'] = 1
- if int(build.flags['qdebug']):
- return True
- return False
-
- def add_options(self, build, vars):
- vars.Add(
- 'qdebug', 'Set to 1 to enable verbose console debug output.', 1)
-
- def configure(self, build, conf):
- if not self.enabled(build):
- build.env.Append(CPPDEFINES='QT_NO_DEBUG_OUTPUT')
-
-
class Verbose(Feature):
def description(self):
return "Verbose compilation output"