forked from qt-creator/qt-creator
RemoteLinux: Fix "make install" step
Was mangled in 42ab5c84b9
.
Fixes: QTCREATORBUG-25359
Change-Id: I0a4f69fc72433548d44461c3c7c02bd53708d12d
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -87,6 +87,13 @@ protected:
|
|||||||
void supportDisablingForSubdirs() { m_disablingForSubDirsSupported = true; }
|
void supportDisablingForSubdirs() { m_disablingForSubDirsSupported = true; }
|
||||||
virtual QStringList displayArguments() const;
|
virtual QStringList displayArguments() const;
|
||||||
|
|
||||||
|
Utils::StringAspect *makeCommandAspect() const { return m_makeCommandAspect; }
|
||||||
|
Utils::MultiSelectionAspect *buildTargetsAspect() const { return m_buildTargetsAspect; }
|
||||||
|
Utils::StringAspect *userArgumentsAspect() const { return m_userArgumentsAspect; }
|
||||||
|
Utils::AspectContainer *jobCountContainer() const { return m_jobCountContainer; }
|
||||||
|
Utils::BoolAspect *disabledForSubdirsAspect() const { return m_disabledForSubdirsAspect; }
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static int defaultJobCount();
|
static int defaultJobCount();
|
||||||
QStringList jobArguments() const;
|
QStringList jobArguments() const;
|
||||||
|
@@ -58,6 +58,12 @@ const char CustomCommandLineAspectId[] = "RemoteLinux.MakeInstall.CustomCommandL
|
|||||||
|
|
||||||
MakeInstallStep::MakeInstallStep(BuildStepList *parent, Utils::Id id) : MakeStep(parent, id)
|
MakeInstallStep::MakeInstallStep(BuildStepList *parent, Utils::Id id) : MakeStep(parent, id)
|
||||||
{
|
{
|
||||||
|
makeCommandAspect()->setVisible(false);
|
||||||
|
buildTargetsAspect()->setVisible(false);
|
||||||
|
userArgumentsAspect()->setVisible(false);
|
||||||
|
jobCountContainer()->setVisible(false);
|
||||||
|
disabledForSubdirsAspect()->setVisible(false);
|
||||||
|
|
||||||
const auto makeAspect = addAspect<ExecutableAspect>();
|
const auto makeAspect = addAspect<ExecutableAspect>();
|
||||||
makeAspect->setId(MakeAspectId);
|
makeAspect->setId(MakeAspectId);
|
||||||
makeAspect->setSettingsKey(MakeAspectId);
|
makeAspect->setSettingsKey(MakeAspectId);
|
||||||
|
Reference in New Issue
Block a user