Ver Fonte

rename vs runtimes (#4206)

ruki há 1 ano atrás
pai
commit
741cec2fbc
2 ficheiros alterados com 2 adições e 2 exclusões
  1. 1 1
      packages/a/aqt/xmake.lua
  2. 1 1
      packages/q/qtbase/xmake.lua

+ 1 - 1
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" })

+ 1 - 1
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")