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.
18 lines
568 B
18 lines
568 B
package("phnt") |
|
|
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/winsiderss/systeminformer") |
|
set_description("Native API header files for the System Informer project.") |
|
|
|
set_urls("https://github.com/winsiderss/phnt.git") |
|
add_versions("2023.6.18", "7c1adb8a7391939dfd684f27a37e31f18d303944") |
|
|
|
add_syslinks("ntdll") |
|
|
|
on_install("windows", function (package) |
|
os.cp("*.h", package:installdir("include")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cincludes("phnt_windows.h")) |
|
end)
|
|
|