forked from qt-creator/qt-creator
ProjectExplorer: Make target device for executable aspect explicit
Just run and host is not enough, build device is needed, too. This fixes the MakeInstall step for remote linux. Change-Id: I3ec797379b7d0d5842780d505d8b87a91286e460 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -80,7 +80,7 @@ static IosDeviceType toIosDeviceType(const SimulatorInfo &device)
|
||||
IosRunConfiguration::IosRunConfiguration(Target *target, Id id)
|
||||
: RunConfiguration(target, id)
|
||||
{
|
||||
auto executableAspect = addAspect<ExecutableAspect>(target);
|
||||
auto executableAspect = addAspect<ExecutableAspect>(target, ExecutableAspect::RunDevice);
|
||||
executableAspect->setDisplayStyle(StringAspect::LabelDisplay);
|
||||
|
||||
addAspect<ArgumentsAspect>(macroExpander());
|
||||
|
Reference in New Issue
Block a user