From 5a406e8a207bba2b7789f449a162290de6bc6d90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sun, 20 Jun 2021 13:42:49 +0200 Subject: [PATCH] Add entt dependency to Core and Physics3D --- xmake.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xmake.lua b/xmake.lua index 3c68f861d..faa8b90eb 100644 --- a/xmake.lua +++ b/xmake.lua @@ -14,7 +14,8 @@ local modules = { if is_plat("linux") then add_syslinks("dl", "pthread") end - end + end, + Packages = {"entt"} }, Graphics = { Deps = {"NazaraRenderer"}, @@ -54,7 +55,7 @@ local modules = { }, Physics3D = { Deps = {"NazaraUtility"}, - Packages = {"newtondynamics"} + Packages = {"entt", "newtondynamics"} }, Platform = { Deps = {"NazaraUtility"},