diff options
author | hjk <[email protected]> | 2022-05-11 13:54:42 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2022-05-18 09:50:40 +0000 |
commit | 72a2083cd146b8e6b3ac695f18a1909ca3642081 (patch) | |
tree | ce3d046950996ada05cace1c32a4b1180aecdd70 /src/plugins/ios/iosrunconfiguration.cpp | |
parent | 8737dfd962d65f1bae2bcf749adee58433129776 (diff) |
ProjectExplorer: Shift full FilePath creation into Executable aspect
Less need for correction: When a target is given, the executable
produced by the aspect will be on the target device.
Change-Id: I86c38e9f9fa5b4d4fe9b2ef7f21a0b3aa5b28670
Reviewed-by: Christian Stenger <[email protected]>
Reviewed-by: Jarek Kobus <[email protected]>
Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/ios/iosrunconfiguration.cpp')
-rw-r--r-- | src/plugins/ios/iosrunconfiguration.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/ios/iosrunconfiguration.cpp b/src/plugins/ios/iosrunconfiguration.cpp index 51a2288c492..e54633f89fc 100644 --- a/src/plugins/ios/iosrunconfiguration.cpp +++ b/src/plugins/ios/iosrunconfiguration.cpp @@ -77,10 +77,10 @@ static IosDeviceType toIosDeviceType(const SimulatorInfo &device) return iosDeviceType; } -IosRunConfiguration::IosRunConfiguration(Target *target, Utils::Id id) +IosRunConfiguration::IosRunConfiguration(Target *target, Id id) : RunConfiguration(target, id) { - auto executableAspect = addAspect<ExecutableAspect>(); + auto executableAspect = addAspect<ExecutableAspect>(target); executableAspect->setDisplayStyle(StringAspect::LabelDisplay); addAspect<ArgumentsAspect>(); |