Skip to content
Snippets Groups Projects
Commit 00320f51 authored by Daniel Teske's avatar Daniel Teske
Browse files

Desktop Qmake RC: Toggling usingDyldImageSuffix should update the environment


Change-Id: I79d66a5a44172640febe9a4d83e71ad436468f35
Reviewed-by: default avatarEike Ziller <eike.ziller@theqtcompany.com>
parent bbe8195d
Branches
Tags
No related merge requests found
...@@ -450,6 +450,10 @@ void DesktopQmakeRunConfiguration::setUsingDyldImageSuffix(bool state) ...@@ -450,6 +450,10 @@ void DesktopQmakeRunConfiguration::setUsingDyldImageSuffix(bool state)
{ {
m_isUsingDyldImageSuffix = state; m_isUsingDyldImageSuffix = state;
emit usingDyldImageSuffixChanged(state); emit usingDyldImageSuffixChanged(state);
LocalEnvironmentAspect *aspect = extraAspect<LocalEnvironmentAspect>();
QTC_ASSERT(aspect, return);
aspect->environmentChanged();
} }
QString DesktopQmakeRunConfiguration::workingDirectory() const QString DesktopQmakeRunConfiguration::workingDirectory() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment