dxsdk: Remove os check (#2276)

pull/2279/head
Jérôme Leclercq 1 year ago committed by GitHub
parent 6667abdda1
commit 8456766ce1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      packages/d/dxsdk/xmake.lua

@ -3,17 +3,16 @@ package("dxsdk")
set_description("This package contains the headers, import libraries, and runtime DLLs for the deprecated D3DX9, D3DX10, and D3DX11 utilities libraries")
set_license("Microsoft")
if is_host("windows") and (os.arch() == "x64" or os.arch() == "x86") then
local version_map = {
["9.29.9528"] = "9.29.952.8"
}
add_configs("shared", { description = "Only shared binaries.", default = true, type = "boolean", readonly = true })
set_urls("https://www.nuget.org/api/v2/package/Microsoft.DXSDK.D3DX/$(version)/#Microsoft.DXSDK.D3DX-$(version).zip", {version = function(version)
local ver = version_map[tostring(version)]
return ver and ver or version
end})
add_versions("9.29.9528", "ead0906ae8a26c18a7525da7490127a2110f7c58f18293738283e30e97c6ea4b")
end
local version_map = {
["9.29.9528"] = "9.29.952.8"
}
set_urls("https://www.nuget.org/api/v2/package/Microsoft.DXSDK.D3DX/$(version)/#Microsoft.DXSDK.D3DX-$(version).zip", {version = function(version)
local ver = version_map[tostring(version)]
return ver and ver or version
end})
add_versions("9.29.9528", "ead0906ae8a26c18a7525da7490127a2110f7c58f18293738283e30e97c6ea4b")
add_configs("shared", { description = "Only shared binaries.", default = true, type = "boolean", readonly = true })
on_install("windows|x64", "windows|x86", function(package)
os.cp("build/native/include", package:installdir())

Loading…
Cancel
Save