summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2016-06-27 16:21:25 +0200
committerLars Knoll <lars.knoll@qt.io>2016-07-05 15:49:03 +0000
commit0e1efdf549a1b036c58e752f92df5369152bff75 (patch)
tree2338fe33cfd7e690427f1da7f582efd0944d914a /qmake
parent8ca247e287963802f59af1c3243467792f18ba31 (diff)
Remove the -target command line option
This was only used to specify XP as a target which is not supported on 5.8 anymore. Clean up all associated special handling in the mkspecs and pro files. This effectively reverts change 10a0ac75. Change-Id: I420d73002912989f1a5be961a2d09277ec4a4425 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/win32/msvc_vcproj.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/qmake/generators/win32/msvc_vcproj.cpp b/qmake/generators/win32/msvc_vcproj.cpp
index ee8a31cb1c..7e476eaf42 100644
--- a/qmake/generators/win32/msvc_vcproj.cpp
+++ b/qmake/generators/win32/msvc_vcproj.cpp
@@ -378,8 +378,6 @@ QString VcprojGenerator::retrievePlatformToolSet() const
QString suffix;
if (project->isActiveConfig("winphone"))
suffix = '_' + project->first("WINTARGET_VER").toQString().toLower();
- else if (project->first("QMAKE_TARGET_OS") == "xp")
- suffix = "_xp";
switch (vcProject.Configuration.CompilerVersion)
{