forked from qt-creator/qt-creator
Fix Windows CE SDK detection.
Assignments to CE_SDK in the mkspecs are not quoted, and is therefore stored as a string list. Recombine the string list back into a single string before use.
This commit is contained in:
@@ -1113,7 +1113,7 @@ void QtVersion::updateToolChain() const
|
||||
reader->readProFile(mkspecPath + "/qmake.conf");
|
||||
QString qmakeCXX = reader->value("QMAKE_CXX");
|
||||
QString makefileGenerator = reader->value("MAKEFILE_GENERATOR");
|
||||
QString ce_sdk = reader->value("CE_SDK");
|
||||
QString ce_sdk = reader->values("CE_SDK").join(QLatin1String(" "));
|
||||
QString ce_arch = reader->value("CE_ARCH");
|
||||
QString qt_arch = reader->value("QT_ARCH");
|
||||
if (!ce_sdk.isEmpty() && !ce_arch.isEmpty()) {
|
||||
|
Reference in New Issue
Block a user