Feature #711 ยป 0040-meson-winbuild.sh-Add-Qt6x-client-build-option.patch
| platforms/windows/installer_cross/meson-winbuild.sh | ||
|---|---|---|
|
test "${GUI}" != "gtk4x" &&
|
||
|
test "${GUI}" != "sdl2" &&
|
||
|
test "${GUI}" != "qt6" &&
|
||
|
test "${GUI}" != "qt6x" &&
|
||
|
test "${GUI}" != "ruledit" ; then
|
||
|
echo "Unknown gui \"$2\"" >&2
|
||
|
exit 1
|
||
| ... | ... | |
|
TOOLS="${TOOLS},ruledit"
|
||
|
MIN_WINVER=0x0A00
|
||
|
QTPARAMS="-Dqtver=qt6" ;;
|
||
|
qt6x) CLIENT="qt"
|
||
|
FCMP="qt"
|
||
|
TOOLS="${TOOLS},ruledit"
|
||
|
MIN_WINVER=0x0A00
|
||
|
QTPARAMS="-Dqtver=qt6x" ;;
|
||
|
ruledit) CLIENT="[]"
|
||
|
FCMP="[]"
|
||
|
TOOLS="ruledit"
|
||