summaryrefslogtreecommitdiff
path: root/xmake.lua
diff options
context:
space:
mode:
authorOmni <omniscient.oce@gmail.com>2024-08-03 14:03:20 +1000
committerOmni <omniscient.oce@gmail.com>2024-08-03 14:03:20 +1000
commit1b2d2f2b4ae67fb0fd10f52891eae3a6a2b24c16 (patch)
tree405b64742b4ded981a606a0d4903c1da4af8be2d /xmake.lua
parent15af852fed398045334bc5e909f044f9b40c2476 (diff)
remove vulkan link on linux for now
Diffstat (limited to 'xmake.lua')
-rw-r--r--xmake.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake.lua b/xmake.lua
index 40303ca..cf64562 100644
--- a/xmake.lua
+++ b/xmake.lua
@@ -20,7 +20,7 @@ end
-- Platform defines and system packages
if is_plat("linux") then
add_defines("CEL_PLATFORM_LINUX")
- add_syslinks("dl", "X11", "pthread", "vulkan")
+ add_syslinks("dl", "X11", "pthread") --, "vulkan")
elseif is_plat("windows") then
add_defines("CEL_PLATFORM_WINDOWS")
add_syslinks("user32", "gdi32", "kernel32", "shell32")