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.
36 lines
1.3 KiB
36 lines
1.3 KiB
package("sse2neon") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/DLTcollab/sse2neon") |
|
set_description("A translator from Intel SSE intrinsics to Arm/Aarch64 NEON implementation") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/DLTcollab/sse2neon/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/DLTcollab/sse2neon.git") |
|
|
|
add_versions("v1.7.0", "cee6d54922dbc9d4fa57749e3e4b46161b7f435a22e592db9da008051806812a") |
|
|
|
if is_plat("windows") then |
|
add_cxxflags("/Zc:preprocessor") |
|
end |
|
|
|
on_check(function (package) |
|
assert(package:is_arch("arm.*"), "package(sse2neon): only support arm") |
|
if package:is_plat("windows") then |
|
import("core.tool.toolchain") |
|
|
|
local msvc = toolchain.load("msvc", {plat = package:plat(), arch = package:arch()}) |
|
if msvc then |
|
local vs = msvc:config("vs") |
|
assert(vs and tonumber(vs) >= 2022, "package(sse2neon): need vs >= 2022") |
|
end |
|
end |
|
end) |
|
|
|
on_install("!cross", function (package) |
|
assert(package:is_arch("arm.*"), "package(sse2neon): only support arm") |
|
os.vcp("sse2neon.h", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cxxincludes("sse2neon.h")) |
|
end)
|
|
|