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.
 
 
 

20 lines
860 B

package("aitoolkit")
set_kind("library", {headeronly = true})
set_homepage("https://linkdd.github.io/aitoolkit/")
set_description("Give a brain to your game's NPCs")
set_license("MIT")
add_urls("https://github.com/linkdd/aitoolkit/archive/refs/tags/$(version).tar.gz",
"https://github.com/linkdd/aitoolkit.git")
add_versions("v0.5.1", "25ce3e5225d9ab3e4aa5b5cf41b790d17c8d6586a06fa70e18ae7aad7ca6ac26")
add_versions("v0.5.0", "e2f59412a6cdc7389f25f4b85847e81c39866d33367515bd02e38be4d54ac74c")
add_versions("v0.3.0", "8cbe1d281235a3486c5840c7f9782f2b3b2ed181d76e8cbe83a2b1395d21ab8a")
on_install(function (package)
os.cp("include", package:installdir())
end)
on_test(function (package)
assert(package:has_cxxincludes("aitoolkit/fsm.hpp", {configs = {languages = "c++20"}}))
end)