Skip to content

Commit

Permalink
Qbs: Fixed issue with creating Windows XP snapshot
Browse files Browse the repository at this point in the history
These icu DLLs have disappeared now also in Qt 5.6.3.

(cherry picked from commit 96a3d59)
  • Loading branch information
bjorn committed May 31, 2018
1 parent 859b1b7 commit d591a4f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dist/distribute.qbs
Expand Up @@ -75,7 +75,9 @@ Product {
}

if (qbs.targetOS.contains("windows")) {
if (Qt.core.versionMinor < 7) {
if (Qt.core.versionMinor < 7 &&
!(Qt.core.versionMinor == 6 &&
Qt.core.versionPatch >= 3)) {
list.push("icuin54.dll",
"icuuc54.dll",
"icudt54.dll");
Expand Down

0 comments on commit d591a4f

Please sign in to comment.