aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/windows-msvc.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/cpp/windows-msvc.qbs')
-rw-r--r--share/qbs/modules/cpp/windows-msvc.qbs43
1 files changed, 0 insertions, 43 deletions
diff --git a/share/qbs/modules/cpp/windows-msvc.qbs b/share/qbs/modules/cpp/windows-msvc.qbs
index cce1a547b..98a88b2b9 100644
--- a/share/qbs/modules/cpp/windows-msvc.qbs
+++ b/share/qbs/modules/cpp/windows-msvc.qbs
@@ -73,7 +73,6 @@ CppModule {
separateDebugInformation: true
property bool generateManifestFile: true
- property bool generateManifestFiles: generateManifestFile // TODO: Remove in 1.6
property path toolchainInstallPath
architecture: qbs.architecture
staticLibraryPrefix: ""
@@ -133,48 +132,6 @@ CppModule {
}
}
- // TODO: Remove in 1.6
- Transformer {
- condition: cPrecompiledHeader !== undefined
- inputs: cPrecompiledHeader
- Artifact {
- fileTags: ['obj']
- filePath: {
- var completeBaseName = FileInfo.completeBaseName(product.moduleProperty("cpp",
- "cPrecompiledHeader"));
- return ".obj/" + Utilities.getHash(completeBaseName) + '_c.obj'
- }
- }
- Artifact {
- fileTags: ['c_pch']
- filePath: ".obj/" + product.name + '_c.pch'
- }
- prepare: {
- return MSVC.prepareCompiler.apply(this, arguments);
- }
- }
-
- Transformer {
- condition: cxxPrecompiledHeader !== undefined
- inputs: cxxPrecompiledHeader
- explicitlyDependsOn: ["c_pch"] // to prevent vc--0.pdb conflict
- Artifact {
- fileTags: ['obj']
- filePath: {
- var completeBaseName = FileInfo.completeBaseName(product.moduleProperty("cpp",
- "cxxPrecompiledHeader"));
- return ".obj/" + Utilities.getHash(completeBaseName) + '_cpp.obj'
- }
- }
- Artifact {
- fileTags: ['cpp_pch']
- filePath: ".obj/" + product.name + '_cpp.pch'
- }
- prepare: {
- return MSVC.prepareCompiler.apply(this, arguments);
- }
- }
-
Rule {
id: compiler
inputs: ["cpp", "c"]