Files
NazaraEngine/tests/ComputeTest/xmake.lua
2023-02-02 20:34:25 +01:00

8 lines
181 B
Lua

if is_plat("wasm") then
return -- Compute shaders are not supported with WebGL (but are with WebGPU)
end
target("ComputeTest")
add_deps("NazaraRenderer")
add_files("main.cpp")