diff --git a/src/plugins/projectexplorer/makestep.h b/src/plugins/projectexplorer/makestep.h index d1865caea8c..0412864c6eb 100644 --- a/src/plugins/projectexplorer/makestep.h +++ b/src/plugins/projectexplorer/makestep.h @@ -90,6 +90,8 @@ protected: Utils::StringAspect *makeCommandAspect() const { return m_makeCommandAspect; } Utils::MultiSelectionAspect *buildTargetsAspect() const { return m_buildTargetsAspect; } Utils::StringAspect *userArgumentsAspect() const { return m_userArgumentsAspect; } + Utils::BoolAspect *overrideMakeflagsAspect() const { return m_overrideMakeflagsAspect; } + Utils::TextDisplay *nonOverrideWarning() const { return m_nonOverrideWarning; } Utils::IntegerAspect *jobCountAspect() const { return m_userJobCountAspect; } Utils::BoolAspect *disabledForSubdirsAspect() const { return m_disabledForSubdirsAspect; } diff --git a/src/plugins/remotelinux/makeinstallstep.cpp b/src/plugins/remotelinux/makeinstallstep.cpp index 72d9f22e232..581e03b14ec 100644 --- a/src/plugins/remotelinux/makeinstallstep.cpp +++ b/src/plugins/remotelinux/makeinstallstep.cpp @@ -61,6 +61,8 @@ MakeInstallStep::MakeInstallStep(BuildStepList *parent, Utils::Id id) : MakeStep makeCommandAspect()->setVisible(false); buildTargetsAspect()->setVisible(false); userArgumentsAspect()->setVisible(false); + overrideMakeflagsAspect()->setVisible(false); + nonOverrideWarning()->setVisible(false); jobCountAspect()->setVisible(false); disabledForSubdirsAspect()->setVisible(false);