From f114f900b4e880094283fd96340a1600cb22a85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sun, 20 Mar 2022 19:41:18 +0100 Subject: [PATCH] Remove moltenvk package for now --- xmake.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xmake.lua b/xmake.lua index 5167a3d08..c47134eaa 100644 --- a/xmake.lua +++ b/xmake.lua @@ -103,7 +103,6 @@ local modules = { add_defines("VK_USE_PLATFORM_WAYLAND_KHR") elseif is_plat("macosx") then add_defines("VK_USE_PLATFORM_METAL_EXT") - add_packages("moltenvk") end end }, @@ -139,7 +138,7 @@ add_requires("openal-soft", { configs = { shared = true }}) add_requires("newtondynamics", { debug = is_plat("windows") and is_mode("debug") }) -- Newton doesn't like compiling in Debug on Linux if is_plat("macosx") then - add_requires("libx11", "moltenvk") + add_requires("libx11") end add_rules("mode.asan", "mode.coverage", "mode.debug", "mode.releasedbg")