Don't use quoting for additional tool arguments...

...that passed to the build tool (cmake --build...)
and specified by user.

Change-Id: I0de51161b5dd700f3160f048fa6f02743a5186e6
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Alexander Drozdov
2016-03-16 00:21:18 +10:00
committed by Tobias Hunger
parent 2123ce49a2
commit a618eb2a9f

View File

@@ -361,7 +361,7 @@ QString CMakeBuildStep::allArguments(const CMakeRunConfiguration *rc) const
if (!m_toolArguments.isEmpty()) { if (!m_toolArguments.isEmpty()) {
Utils::QtcProcess::addArg(&arguments, QLatin1String("--")); Utils::QtcProcess::addArg(&arguments, QLatin1String("--"));
Utils::QtcProcess::addArg(&arguments, m_toolArguments); arguments += QLatin1Char(' ') + m_toolArguments;
} }
return arguments; return arguments;