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.
 
 
 

35 lines
1.4 KiB

package("flecs")
set_homepage("https://github.com/SanderMertens/flecs")
set_description("A fast entity component system (ECS) for C & C++")
set_license("MIT")
add_urls("https://github.com/SanderMertens/flecs/archive/refs/tags/$(version).tar.gz",
"https://github.com/SanderMertens/flecs.git")
add_versions("v3.0.0", "ae88da6abc5612d16ab2e6aa4041b035491fc1f2")
add_versions("v2.4.8", "9a8040a197e4b5e032524bc7183f68faa7b2f759c67b983b40018a7726561cac")
add_deps("cmake")
if is_plat("linux") then
add_syslinks("pthread")
end
on_install("windows", "macosx", "linux", function (package)
local configs = {}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DFLECS_STATIC_LIBS=" .. (package:config("shared") and "OFF" or "ON"))
table.insert(configs, "-DFLECS_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") and not package:config("shared") then
package:add("defines", "flecs_STATIC")
end
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
flecs::world ecs;
}
]]}, {configs = {languages = "c++14"}, includes = "flecs.h"}))
end)