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.
28 lines
1.1 KiB
28 lines
1.1 KiB
package("cpu-features") |
|
|
|
set_homepage("https://github.com/google/cpu_features") |
|
set_description("A cross platform C99 library to get cpu features at runtime.") |
|
set_license("Apache-2.0") |
|
|
|
add_urls("https://github.com/google/cpu_features/archive/$(version).tar.gz", |
|
"https://github.com/google/cpu_features.git") |
|
add_versions("v0.6.0", "95a1cf6f24948031df114798a97eea2a71143bd38a4d07d9a758dda3924c1932") |
|
|
|
add_deps("cmake") |
|
|
|
on_install("windows", "linux", "macosx", "android", function (package) |
|
local configs = {"-DBUILD_TESTING=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
if package:is_plat("linux") then |
|
table.insert(configs, "-DBUILD_PIC=ON") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
package:addenv("PATH", "bin") |
|
end) |
|
|
|
on_test(function (package) |
|
if package:is_plat(os.host()) then |
|
os.vrun("list_cpu_features") |
|
end |
|
assert(package:has_ctypes("CacheLevelInfo", {includes = "cpu_features/cpu_features_cache_info.h"})) |
|
end)
|
|
|