blob: 37bb65f8ae77a3097bf5d1b45309361c3675e7d1 (
plain)
1
2
3
4
5
6
7
8
|
def can_build(env, platform):
# Godot only uses it in the editor, but ANGLE depends on it and we had
# to remove the copy from prebuilt ANGLE libs to solve symbol clashes.
return env.editor_build or env.get("angle_libs")
def configure(env):
pass
|