aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/customexecutablerunconfiguration.h
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2024-01-15 15:38:18 +0100
committerEike Ziller <eike.ziller@qt.io>2024-01-29 12:13:51 +0000
commit479f1f34ceaf5605c49df2014a0d80b1e2044d7e (patch)
tree46df39b154149a2876a52633abf2beac4655692c /src/plugins/projectexplorer/customexecutablerunconfiguration.h
parent76a89667397e8b527ba3a9b00436cc0d10e6c3fa (diff)
iOS: Disable anything but running for iOS 17+ devices
We currently cannot support anything than running for devices with iOS 17 and later. Make it possible for RunConfigurations to state that they are disabled depending on run mode. Change-Id: I13df4dd482f6381cda15168c38ede00d95e1d692 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/customexecutablerunconfiguration.h')
-rw-r--r--src/plugins/projectexplorer/customexecutablerunconfiguration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/projectexplorer/customexecutablerunconfiguration.h b/src/plugins/projectexplorer/customexecutablerunconfiguration.h
index 39199f4b4a..ced9892c01 100644
--- a/src/plugins/projectexplorer/customexecutablerunconfiguration.h
+++ b/src/plugins/projectexplorer/customexecutablerunconfiguration.h
@@ -21,7 +21,7 @@ public:
private:
Utils::ProcessRunData runnable() const override;
- bool isEnabled() const override;
+ bool isEnabled(Utils::Id) const override;
Tasks checkForIssues() const override;
void configurationDialogFinished();