Skip to content
Snippets Groups Projects
Commit fa435213 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

fix comment.

parent 34a14100
No related branches found
No related tags found
No related merge requests found
......@@ -51,9 +51,9 @@ namespace ProjectExplorer {
It should be used as a base class if your buildstep just needs to run a process.
Usage:
Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run.
(You need to do that before calling AbstractProcess::init())
Inside YourBuildStep::init() call AbstractProcessStep::init()
Use setCommand(), setArguments(), setWorkingDirectory() to specify the process you want to run
(you need to do that before calling AbstractProcessStep::init()).
Inside YourBuildStep::init() call AbstractProcessStep::init().
Inside YourBuildStep::run() call AbstractProcessStep::run(), which automatically starts the proces
and by default adds the output on stdOut and stdErr to the OutputWindow.
If you need to process the process output override stdOut() and/or stdErr.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment