forked from qt-creator/qt-creator
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:
committed by
Tobias Hunger
parent
2123ce49a2
commit
a618eb2a9f
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user