We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d1c2095 + 56ea43c commit 707bfc3Copy full SHA for 707bfc3
xmake/modules/package/tools/cmake.lua
@@ -298,11 +298,11 @@ function _get_vs_toolset(package)
298
toolset_ver = "v" .. verinfo[1] .. (verinfo[2]:sub(1, 1) or "0")
299
end
300
301
- -- cmake does not support vs toolset v144 below 3.29.0, we can only use v143
+ -- cmake does not support vs toolset v144 below 3.29.3, we can only use v143
302
-- @see https://github.com/xmake-io/xmake/issues/4772
303
if toolset_ver and toolset_ver >= "v144" then
304
local cmake_version = _get_cmake_version()
305
- if cmake_version and cmake_version:le("3.29.0") then
+ if cmake_version and cmake_version:le("3.29.3") then
306
toolset_ver = "v143"
307
308
0 commit comments