parent
c100f2a17b
commit
c458b51ecd
1 changed files with 42 additions and 0 deletions
@ -0,0 +1,42 @@ |
||||
package("rcmp") |
||||
set_homepage("https://github.com/Smertig/rcmp") |
||||
set_description("C++17, multi-architecture cross-platform hooking library with clean API.") |
||||
set_license("MIT") |
||||
|
||||
add_urls("https://github.com/Smertig/rcmp/archive/refs/tags/$(version).tar.gz", |
||||
"https://github.com/Smertig/rcmp.git") |
||||
|
||||
add_versions("v0.2.2", "accbf1d2c72b169857900ce816ca3c1718c63c9f67ded413613c236455a331d5") |
||||
|
||||
add_deps("cmake") |
||||
|
||||
on_install("linux", "windows", function (package) |
||||
local configs = {} |
||||
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
||||
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
||||
import("package.tools.cmake").install(package, configs, {buildir = "build"}) |
||||
local version = package:version() |
||||
if version then |
||||
package:add("defines", "RCMP_VERSION_MAJOR=" .. version:major()) |
||||
package:add("defines", "RCMP_VERSION_MINOR=" .. version:minor()) |
||||
package:add("defines", "RCMP_VERSION_PATCH=" .. version:patch()) |
||||
end |
||||
os.cp("include", package:installdir()) |
||||
os.trycp("build/**.a", package:installdir("lib")) |
||||
os.trycp("build/**.so", package:installdir("lib")) |
||||
os.trycp("build/**.dll", package:installdir("bin")) |
||||
os.trycp("build/**.lib", package:installdir("lib")) |
||||
end) |
||||
|
||||
on_test(function (package) |
||||
assert(package:check_cxxsnippets({test = [[ |
||||
int bar(float arg) { |
||||
return static_cast<int>(arg) + 5; |
||||
} |
||||
void test() { |
||||
rcmp::hook_function<&bar>([](auto original_bar, float arg) { |
||||
return original_bar(2 * arg) + 1; |
||||
}); |
||||
} |
||||
]]}, {configs = {languages = "c++17"}, includes = {"rcmp.hpp"}})) |
||||
end) |
Loading…
Reference in new issue