summaryrefslogtreecommitdiff
path: root/src/plugins/winrt/winrtrunconfiguration.h
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-08-01 17:40:21 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-08-04 12:39:19 +0200
commitd4a32cdba9a3a2692f44e5b76ebaa8a72bd83a80 (patch)
tree36f53506d91db0ad9282bd3c8bd94dfbd5bbd26a /src/plugins/winrt/winrtrunconfiguration.h
parentd6e0df1c74045936c5db030e15b094a61de068d2 (diff)
downloadqt-creator-d4a32cdba9a3a2692f44e5b76ebaa8a72bd83a80.tar.gz
WinRt: fix run control for SUBDIRS projects
Winrtrunner was called with the executable file path for the top-level .pro file, which happens to be the empty string. We now store (and use) the right .pro file path. Change-Id: I7d71e6b99393e863f3ba0df2d2902f29d75a9583 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Daniel Teske <daniel.teske@digia.com>
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 af2e1850d5..f010580f29 100644
--- a/src/plugins/winrt/winrtrunconfiguration.h
+++ b/src/plugins/winrt/winrtrunconfiguration.h
@@ -47,6 +47,7 @@ public:
QVariantMap toMap() const;
bool fromMap(const QVariantMap &map);
+ const QString &proFilePath() const { return m_proFilePath; }
const QString &arguments() const { return m_arguments; }
bool uninstallAfterStop() const { return m_uninstallAfterStop; }
@@ -59,6 +60,7 @@ public slots:
void setUninstallAfterStop(bool b);
private:
+ QString m_proFilePath;
QString m_arguments;
bool m_uninstallAfterStop;
};