Browse Source

Add linux pacman add_extsources for glfw (#877)

Arthapz 3 years ago
parent
commit
b40cec79ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/g/glfw/xmake.lua

+ 1 - 1
packages/g/glfw/xmake.lua

@@ -14,7 +14,7 @@ package("glfw")
     add_configs("glfw_include", {description = "Choose submodules enabled in glfw", default = "none", type = "string", values = {"none", "vulkan", "glu", "glext", "es2", "es3"}})
 
     if is_plat("linux") then
-        add_extsources("apt::libglfw3-dev")
+        add_extsources("apt::libglfw3-dev", "pacman::glfw-x11")
     end
 
     add_deps("cmake")