aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/gcc.js
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/cpp/gcc.js')
-rw-r--r--share/qbs/modules/cpp/gcc.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/share/qbs/modules/cpp/gcc.js b/share/qbs/modules/cpp/gcc.js
index d7842c4e0..ebc07d525 100644
--- a/share/qbs/modules/cpp/gcc.js
+++ b/share/qbs/modules/cpp/gcc.js
@@ -470,14 +470,6 @@ function compilerFlags(product, input, output) {
args.push('-include', pchFilePath);
}
- // TODO: Remove in 1.6
- if (!pchOutput && ModUtils.moduleProperty(input, 'precompiledHeader', tag)) {
- pchFilePath = FileInfo.joinPaths(
- ModUtils.moduleProperty(product, "precompiledHeaderDir"),
- product.name + "_" + tag);
- args.push('-include', pchFilePath);
- }
-
var positionIndependentCode = input.moduleProperty('cpp', 'positionIndependentCode')
if (effectiveType === EffectiveTypeEnum.LIB) {
if (positionIndependentCode !== false && !product.moduleProperty("qbs", "toolchain").contains("mingw"))