forked from Hertog/godot-module-template
9 lines
226 B
Python
9 lines
226 B
Python
|
def can_build(env, platform):
|
||
|
# glslang is only needed when Vulkan or Direct3D 12-based renderers are available,
|
||
|
# as OpenGL doesn't use glslang.
|
||
|
return env["vulkan"] or env["d3d12"]
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|