From efa2c0a25373bd5a4c9edc8aa95473fd2fa78b4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Thu, 17 Mar 2022 23:07:02 +0100 Subject: [PATCH] XMake: Add efsw dependency --- xmake.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xmake.lua b/xmake.lua index 06f2acdaa..11e9724c4 100644 --- a/xmake.lua +++ b/xmake.lua @@ -80,7 +80,8 @@ local modules = { Deps = {"NazaraPlatform", "NazaraShader"} }, Shader = { - Deps = {"NazaraUtility"} + Deps = {"NazaraUtility"}, + Packages = {"efsw"} }, Utility = { Deps = {"NazaraCore"}, @@ -128,7 +129,7 @@ set_xmakever("2.6.3") add_repositories("local-repo xmake-repo") -add_requires("chipmunk2d", "dr_wav", "entt >=3.9", "kiwisolver", "libflac", "libsdl", "minimp3", "stb") +add_requires("chipmunk2d", "dr_wav", "efsw", "entt >=3.9", "kiwisolver", "libflac", "libsdl", "minimp3", "stb") add_requires("freetype", { configs = { bzip2 = true, png = true, woff2 = true, zlib = true, debug = is_mode("debug") } }) add_requires("libvorbis", { configs = { with_vorbisenc = false } }) add_requires("openal-soft", { configs = { shared = true }})