forked from qt-creator/qt-creator
overhaul process argument handling
get away from argument stringlists. instead, use native shell command lines which support quoting/splitting, environment variable expansion and redirections with well-understood semantics. Task-number: QTCREATORBUG-542 Task-number: QTCREATORBUG-1564
This commit is contained in:
@@ -67,7 +67,7 @@ public:
|
||||
virtual bool immutable() const;
|
||||
bool buildsTarget(const QString &target) const;
|
||||
void setBuildTarget(const QString &target, bool on);
|
||||
QStringList replacedArguments() const;
|
||||
QString replacedArguments() const;
|
||||
QString makeCommand() const;
|
||||
|
||||
QVariantMap toMap() const;
|
||||
@@ -81,7 +81,7 @@ private:
|
||||
void ctor();
|
||||
|
||||
QStringList m_buildTargets;
|
||||
QStringList m_makeArguments;
|
||||
QString m_makeArguments;
|
||||
QString m_makeCommand;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user