aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cmakeprojectmanager/cmakebuildstep.h
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2019-05-29 18:54:45 +0200
committerhjk <hjk@qt.io>2019-06-03 11:20:39 +0000
commitfa38a316445d484ccffbabe58764fa9a8570897f (patch)
tree9f03bbff37a0bb09f47340bceb041b4d011f92dd /src/plugins/cmakeprojectmanager/cmakebuildstep.h
parent884665a0fe2a9afe511e33601a421ead66d4c1b9 (diff)
CMake: Use Utils::CommandLine for CMakeBuildStep
Change-Id: I0490b1edf073c680f24ad7de10b544443ae62c5e Reviewed-by: Cristian Adam <cristian.adam@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cmakeprojectmanager/cmakebuildstep.h')
-rw-r--r--src/plugins/cmakeprojectmanager/cmakebuildstep.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/cmakeprojectmanager/cmakebuildstep.h b/src/plugins/cmakeprojectmanager/cmakebuildstep.h
index ba2f62dab6..9b906f883f 100644
--- a/src/plugins/cmakeprojectmanager/cmakebuildstep.h
+++ b/src/plugins/cmakeprojectmanager/cmakebuildstep.h
@@ -35,7 +35,10 @@ class QListWidget;
class QListWidgetItem;
QT_END_NAMESPACE
-namespace Utils { class PathChooser; }
+namespace Utils {
+class CommandLine;
+class PathChooser;
+} // Utils
namespace ProjectExplorer { class ToolChain; }
@@ -64,9 +67,7 @@ public:
QString toolArguments() const;
void setToolArguments(const QString &list);
- QString allArguments(const CMakeRunConfiguration *rc) const;
-
- Utils::FilePath cmakeCommand() const;
+ Utils::CommandLine cmakeCommand(CMakeRunConfiguration *rc) const;
QVariantMap toMap() const override;