diff options
| -rw-r--r-- | tests/projects/other/glsl2spv/xmake.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/projects/other/glsl2spv/xmake.lua b/tests/projects/other/glsl2spv/xmake.lua index 3dfce3ed4..111927e56 100644 --- a/tests/projects/other/glsl2spv/xmake.lua +++ b/tests/projects/other/glsl2spv/xmake.lua @@ -1,9 +1,11 @@ add_rules("mode.debug", "mode.release") +add_requires("glslang", {configs = {binaryonly = true}}) + target("test") set_kind("binary") add_rules("utils.glsl2spv", {bin2c = true}) add_files("src/*.c") add_files("src/*.vert", "src/*.frag") - + add_packages("glslang") |
