forked from qt-creator/qt-creator
Adapt locations of rcc and uic for Qt 6.1
They are now found in libexec, not bin. Task-number: QTBUG-88791 Change-Id: I34a13034833117f2360fdbbf41c54bbf2cfb55da Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
@@ -1040,9 +1040,14 @@ QString BaseQtVersionPrivate::findHostBinary(HostBinaries binary) const
|
|||||||
switch (binary) {
|
switch (binary) {
|
||||||
case Designer:
|
case Designer:
|
||||||
case Linguist:
|
case Linguist:
|
||||||
|
case QScxmlc:
|
||||||
|
baseDir = q->hostBinPath().toString();
|
||||||
|
break;
|
||||||
case Rcc:
|
case Rcc:
|
||||||
case Uic:
|
case Uic:
|
||||||
case QScxmlc:
|
if (q->qtVersion() >= QtVersionNumber(6, 1))
|
||||||
|
baseDir = q->hostLibexecPath().toString();
|
||||||
|
else
|
||||||
baseDir = q->hostBinPath().toString();
|
baseDir = q->hostBinPath().toString();
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user