1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-06-26 19:19:16 +02:00

Switched from fallback encodings to core5compat module in Qt6 builds

Archlinux has started to use the Qt6 build, so to support the legacy East Asian
encodings use the compat module rather than a "clean" but less functional
fallback solution and hope there will be some replacement in Qt6 before
the module gets dropped. Non-UTF XML files will however still not work.
This commit is contained in:
2021-10-27 20:29:12 +02:00
parent f83e320f85
commit 310a113e25
3 changed files with 5 additions and 224 deletions

View File

@ -13,7 +13,10 @@ QT += core \
concurrent \
widgets \
printsupport
greaterThan(QT_MAJOR_VERSION, 5) {QT += openglwidgets}
greaterThan(QT_MAJOR_VERSION, 5) {
QT += openglwidgets \
core5compat
}
CONFIG += object_parallel_to_source
INCLUDEPATH += ./src