xmake.lua 564 B

1234567891011121314151617
  1. package("bght")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://owensgroup.github.io/BGHT/")
  4. set_description("BGHT: Better GPU Hash Tables")
  5. set_license("Apache-2.0")
  6. add_urls("https://github.com/owensgroup/BGHT.git")
  7. add_versions("2024.03.06", "fd58966b20f76c7cd1aa1bdae58e28f6e3a7d242")
  8. on_install(function (package)
  9. os.cp("include/bght", package:installdir("include"))
  10. end)
  11. on_test(function (package)
  12. assert(os.isfile(path.join(package:installdir("include"), "bght", "bcht.hpp")))
  13. end)