forked from qt-creator/qt-creator
Add a argument line edit for the cmake runconfiguration.
Even works.
This commit is contained in:
@@ -41,6 +41,7 @@ class CMakeProject;
|
||||
|
||||
class CMakeRunConfiguration : public ProjectExplorer::ApplicationRunConfiguration
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
CMakeRunConfiguration(CMakeProject *pro, const QString &target, const QString &workingDirectory, const QString &title);
|
||||
virtual ~CMakeRunConfiguration();
|
||||
@@ -60,11 +61,15 @@ public:
|
||||
virtual void save(ProjectExplorer::PersistentSettingsWriter &writer) const;
|
||||
virtual void restore(const ProjectExplorer::PersistentSettingsReader &reader);
|
||||
virtual QString dumperLibrary() const;
|
||||
|
||||
private slots:
|
||||
void setArguments(const QString &newText);
|
||||
private:
|
||||
RunMode m_runMode;
|
||||
QString m_target;
|
||||
QString m_workingDirectory;
|
||||
QString m_title;
|
||||
QString m_arguments;
|
||||
};
|
||||
|
||||
/* The run configuration factory is used for restoring run configurations from
|
||||
|
||||
Reference in New Issue
Block a user