package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.5 KiB
34 lines
1.5 KiB
package("directx-headers") |
|
|
|
set_homepage("https://github.com/microsoft/DirectX-Headers") |
|
set_description("Official DirectX headers") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/microsoft/DirectX-Headers/archive/refs/tags/$(version).zip", |
|
"https://github.com/microsoft/DirectX-Headers.git") |
|
add_versions("v1.610.0", "ce8036d57e4b3b87167bf82a0236fc09cba4ffa7088322912b8ce82f284555db") |
|
|
|
add_patches("1.610.0", path.join(os.scriptdir(), "patches", "1.610.0", "mingw.patch"), "7409d90adb1513e8683cc6d16aba1a3e73643c3e04b9af70474a5b13323be0fb") |
|
|
|
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) |
|
|
|
add_deps("cmake") |
|
if is_plat("mingw") then |
|
add_defines("__REQUIRED_RPCNDR_H_VERSION__=475") |
|
elseif is_plat("linux") then |
|
add_includedirs("include", "include/wsl/stubs") |
|
end |
|
|
|
on_install("windows", "mingw", "linux", function (package) |
|
local configs = {"-DDXHEADERS_BUILD_TEST=OFF", "-DDXHEADERS_BUILD_GOOGLE_TEST=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
if package:is_plat("windows", "mingw") then |
|
assert(package:has_cxxtypes("CD3DX12FeatureSupport", {configs = {languages = "cxx14"}, includes = "directx/d3dx12.h"})) |
|
else |
|
assert(package:has_cxxincludes("wsl/winadapter.h", {configs = {languages = "cxx14"}})) |
|
end |
|
end)
|
|
|