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
933 B
28 lines
933 B
package("peloader") |
|
set_kind("binary") |
|
set_homepage("https://github.com/Hagrid29/PELoader") |
|
set_description("PE loader with various shellcode injection techniques") |
|
|
|
add_urls("https://github.com/Hagrid29/PELoader.git") |
|
|
|
add_versions("2022.10.17", "bb0fdb546abc670fa5a600fe6f35e988d38ff9fe") |
|
|
|
add_deps("libpeconv") |
|
|
|
on_install("@windows", "@mingw", "@msys", function (package) |
|
io.writefile("xmake.lua", [[ |
|
add_rules("mode.debug", "mode.release") |
|
add_requires("libpeconv") |
|
target("PELoader") |
|
set_kind("binary") |
|
add_files("PELoader/PELoader/*.cpp") |
|
add_headerfiles("PELoader/PELoader/*.h") |
|
add_syslinks("ktmw32") |
|
add_packages("libpeconv") |
|
]]) |
|
import("package.tools.xmake").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("PELoader") |
|
end)
|
|
|