diff --git a/xmake.lua b/xmake.lua index 3b6719101..1993e6209 100644 --- a/xmake.lua +++ b/xmake.lua @@ -3,7 +3,13 @@ local modules = { Deps = {"NazaraCore"}, Packages = {"dr_wav", "libsndfile", "minimp3"} }, - Core = {}, + Core = { + Custom = function () + if is_plat("linux") then + add_syslinks("dl", "pthread") + end + end + }, Graphics = { Deps = {"NazaraRenderer"} },