aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/processparameters.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/projectexplorer/processparameters.h')
-rw-r--r--src/plugins/projectexplorer/processparameters.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/processparameters.h b/src/plugins/projectexplorer/processparameters.h
index 3e08e6bb85..c87ede7d5b 100644
--- a/src/plugins/projectexplorer/processparameters.h
+++ b/src/plugins/projectexplorer/processparameters.h
@@ -30,7 +30,10 @@
#include <utils/environment.h>
#include <utils/fileutils.h>
-namespace Utils { class MacroExpander; }
+namespace Utils {
+class CommandLine;
+class MacroExpander;
+} // Utils
namespace ProjectExplorer {
@@ -40,6 +43,8 @@ class PROJECTEXPLORER_EXPORT ProcessParameters
public:
ProcessParameters();
+ void setCommandLine(const Utils::CommandLine &cmdLine);
+
void setCommand(const Utils::FilePath &cmd);
Utils::FilePath command() const { return m_command; }