aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYakup Cengiz <yakupcengiz@gmail.com>2022-10-25 13:50:05 +0300
committerKarsten Heimrich <karsten.heimrich@qt.io>2022-11-21 12:56:58 +0000
commit98cf74b447d25e9c51ebf95db57417ba54313a02 (patch)
treede12137ae39125437e506b1629550308d72a8ddb
parentf7b68bf6e33ed94a780a959328c1918b58c2caa3 (diff)
Add QtDllPath to the front of the existing PATH
* Prevents conflicts with Qt binaries installed in other applications. Fixes: QTVSADDINBUG-1061 Change-Id: Idb2652e5aac0090263192f531e0a52124205a639 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
-rw-r--r--QtMSBuild/QtMsBuild/qt_private.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/QtMSBuild/QtMsBuild/qt_private.props b/QtMSBuild/QtMsBuild/qt_private.props
index 68830a1c..a2f0e515 100644
--- a/QtMSBuild/QtMsBuild/qt_private.props
+++ b/QtMSBuild/QtMsBuild/qt_private.props
@@ -154,7 +154,7 @@
// -->
<PropertyGroup>
<LocalDebuggerEnvironment Condition="'$(QtDllPath)' != ''"
- >PATH=%PATH%;$(QtDllPath)&#xD;&#xA;$(LocalDebuggerEnvironment)
+ >PATH=$(QtDllPath);%PATH%&#xD;&#xA;$(LocalDebuggerEnvironment)
</LocalDebuggerEnvironment>
</PropertyGroup>