mirror of
https://github.com/godotengine/godot.git
synced 2024-11-22 12:12:28 +00:00
9 lines
249 B
Python
9 lines
249 B
Python
def can_build(env, platform):
|
|
# glslang is only needed when Vulkan, Direct3D 12 or Metal-based renderers are available,
|
|
# as OpenGL doesn't use glslang.
|
|
return env["vulkan"] or env["d3d12"] or env["metal"]
|
|
|
|
|
|
def configure(env):
|
|
pass
|