summaryrefslogtreecommitdiffstats
path: root/qmake/generators/win32/msvc_nmake.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2018-08-19 11:31:56 +0200
committerSlávek Banko <slavek.banko@axis.cz>2018-08-19 11:31:56 +0200
commit017e8dbffe8919583bb9a3828f9cd8a61505659b (patch)
tree8a03a4e1f62bfe010fb83af2687759b90c20c7c9 /qmake/generators/win32/msvc_nmake.cpp
parent878533ff2cc26df398e586ba989b64919a49103c (diff)
downloadtqt3-017e8dbffe8919583bb9a3828f9cd8a61505659b.tar.gz
tqt3-017e8dbffe8919583bb9a3828f9cd8a61505659b.zip
Fix FTBFS with stricter C++11
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'qmake/generators/win32/msvc_nmake.cpp')
-rw-r--r--qmake/generators/win32/msvc_nmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qmake/generators/win32/msvc_nmake.cpp b/qmake/generators/win32/msvc_nmake.cpp
index 2422a8a6..75138b6c 100644
--- a/qmake/generators/win32/msvc_nmake.cpp
+++ b/qmake/generators/win32/msvc_nmake.cpp
@@ -482,7 +482,7 @@ NmakeMakefileGenerator::init()
if(project->isEmpty("QMAKE_INSTALL_DIR"))
project->variables()["QMAKE_INSTALL_DIR"].append("$(COPY_DIR)");
- bool is_qt = (project->first("TARGET") == "qt"TQTDLL_POSTFIX || project->first("TARGET") == "tqt-mt"TQTDLL_POSTFIX);
+ bool is_qt = (project->first("TARGET") == "qt" TQTDLL_POSTFIX || project->first("TARGET") == "tqt-mt" TQTDLL_POSTFIX);
project->variables()["QMAKE_ORIG_TARGET"] = project->variables()["TARGET"];
TQString targetfilename = project->variables()["TARGET"].first();