summaryrefslogtreecommitdiff
path: root/src/plugins/winrt/winrtrunconfiguration.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@qt.io>2017-01-27 14:28:49 +0100
committerTobias Hunger <tobias.hunger@qt.io>2017-01-30 13:27:16 +0000
commite8b4e180cd0eb3752116284415b327f0946be833 (patch)
treea32b8bcf4c85526e1bf20e552cc40a6388083286 /src/plugins/winrt/winrtrunconfiguration.h
parent836252990a2f46b16698b13dd883e841fedd2e37 (diff)
downloadqt-creator-e8b4e180cd0eb3752116284415b327f0946be833.tar.gz
RunConfiguration: Introduce buildSystemTarget()
Introduce a method that maps a RunConfiguration to the build system target that created the executable. Implement the method in all RunConfigurations where that makes sense (e.g. no CustomExecutables). Change-Id: Ifaac859c2cd9b2806a0d7c185b2239312a67752a Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src/plugins/winrt/winrtrunconfiguration.h')
-rw-r--r--src/plugins/winrt/winrtrunconfiguration.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/winrt/winrtrunconfiguration.h b/src/plugins/winrt/winrtrunconfiguration.h
index dc4d6e15e6..36bcf1ad43 100644
--- a/src/plugins/winrt/winrtrunconfiguration.h
+++ b/src/plugins/winrt/winrtrunconfiguration.h
@@ -47,6 +47,8 @@ public:
bool uninstallAfterStop() const { return m_uninstallAfterStop; }
void setUninstallAfterStop(bool b);
+ QString buildSystemTarget() const final;
+
signals:
void argumentsChanged(QString);
void uninstallAfterStopChanged(bool);