diff --git a/packages/a/aqt/xmake.lua b/packages/a/aqt/xmake.lua index 2ca1a1ed2..103640050 100644 --- a/packages/a/aqt/xmake.lua +++ b/packages/a/aqt/xmake.lua @@ -6,7 +6,7 @@ package("aqt") if is_host("windows") and (os.arch() == "x64" or os.arch() == "x86") then add_configs("shared", {description = "Download shared binaries.", default = true, type = "boolean", readonly = true}) - add_configs("vs_runtime", {description = "Set vs compiler runtime.", default = "MD", readonly = true}) + add_configs("runtimes", {description = "Set compiler runtimes.", default = "MD", readonly = true}) if os.arch() == "x86" then add_urls("https://github.com/miurahr/aqtinstall/releases/download/v$(version)/aqt_x86_signed.exe", { alias = "signed" }) diff --git a/packages/q/qtbase/xmake.lua b/packages/q/qtbase/xmake.lua index 390f1cbff..7e63910f2 100644 --- a/packages/q/qtbase/xmake.lua +++ b/packages/q/qtbase/xmake.lua @@ -5,7 +5,7 @@ package("qtbase") set_license("LGPL-3") add_configs("shared", {description = "Download shared binaries.", default = true, type = "boolean", readonly = true}) - add_configs("vs_runtime", {description = "Set vs compiler runtime.", default = "MD", readonly = true}) + add_configs("runtimes", {description = "Set compiler runtimes.", default = "MD", readonly = true}) add_deps("aqt")