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.
49 lines
2.2 KiB
49 lines
2.2 KiB
package("hookmanager") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/cngege/HookManager") |
|
set_description("A header_only HookManager lib for C++.") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/cngege/HookManager/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/cngege/HookManager.git") |
|
|
|
add_versions("v0.4.1", "51eff9fe2fbff64ddd97e12f8860bb71c194f58a18ef4ebbcfe634bebc632bae") |
|
add_versions("v0.3.3", "8a4ebc17def15c93a09125466211e8ed700c05c4197a8eb0d6aa4a7ed9a4b9a1") |
|
add_versions("v0.3.2", "35f4e658182bfe8d70eaab6af15fee6b182367e0cc7a7163c49ddb1c64024183") |
|
|
|
add_configs("lighthook", {description = "Use lighthook as the underlying hook executor.", default = false, type = "boolean"}) |
|
add_configs("minhook", {description = "Use minhook as the underlying hook executor.", default = true, type = "boolean"}) |
|
add_configs("detours", {description = "Use detours as the underlying hook executor.", default = false, type = "boolean"}) |
|
|
|
if on_check then |
|
on_check(function (package) |
|
assert(not package:is_arch("arm64"),"package(hookmanager) The arm64 architecture is not currently supported.") |
|
assert(not (package:is_arch("x86") and package:config("lighthook")),"package(hookmanager) LightHook does not support the X86 architecture.") |
|
end) |
|
end |
|
|
|
on_load(function (package) |
|
if package:config("lighthook") then |
|
package:add("deps", "lighthook") |
|
package:add("defines", "USE_LIGHTHOOK") |
|
elseif package:config("minhook") then |
|
package:add("deps", "minhook") |
|
package:add("defines", "USE_MINHOOK") |
|
elseif package:config("detours") then |
|
package:add("deps", "microsoft-detours") |
|
package:add("defines", "USE_DETOURS") |
|
end |
|
end) |
|
|
|
on_install("windows", function (package) |
|
os.cp("include/HookManager/HookManager.hpp", package:installdir("include/HookManager")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include "HookManager/HookManager.hpp" |
|
void test() { |
|
auto* h = HookManager::getInstance(); |
|
} |
|
]]}, {configs = {languages = "c++20"}})) |
|
end)
|
|
|