summaryrefslogtreecommitdiffstats
path: root/qmake/generators/win32/msvc_nmake.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/generators/win32/msvc_nmake.cpp')
-rw-r--r--qmake/generators/win32/msvc_nmake.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/qmake/generators/win32/msvc_nmake.cpp b/qmake/generators/win32/msvc_nmake.cpp
index d899c707d4..9f5abfb307 100644
--- a/qmake/generators/win32/msvc_nmake.cpp
+++ b/qmake/generators/win32/msvc_nmake.cpp
@@ -366,16 +366,6 @@ void NmakeMakefileGenerator::writeImplicitRulesPart(QTextStream &t)
}
-static QString cQuoted(const QString &str)
-{
- QString ret = str;
- ret.replace(QLatin1Char('"'), QStringLiteral("\\\""));
- ret.replace(QLatin1Char('\\'), QStringLiteral("\\\\"));
- ret.prepend(QLatin1Char('"'));
- ret.append(QLatin1Char('"'));
- return ret;
-}
-
void NmakeMakefileGenerator::writeBuildRulesPart(QTextStream &t)
{
const ProString templateName = project->first("TEMPLATE");