Skip to content

Commit

Permalink
lazy_importer: add package
Browse files Browse the repository at this point in the history
  • Loading branch information
star-hengxing committed Sep 23, 2024
1 parent a1eb24e commit 4909dd9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/l/lazy_importer/xmake.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package("lazy_importer")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/JustasMasiulis/lazy_importer")
set_description("library for importing functions from dlls in a hidden, reverse engineer unfriendly way")
set_license("Apache-2.0")

add_urls("https://github.com/JustasMasiulis/lazy_importer.git")

add_versions("2023.08.02", "4810f51d63438865e508c2784ea00811d9beb2ea")

on_install(function (package)
os.cp("include", package:installdir())
end)

on_test(function (package)
assert(package:has_cxxincludes("lazy_importer.hpp"))
end)

0 comments on commit 4909dd9

Please sign in to comment.