Merge pull request #94903 from bruvzg/astc_angle

Enable ASTC encoder build when building with ANGLE.
This commit is contained in:
Rémi Verschelde 2024-07-30 12:29:07 +02:00
commit fbcde49cb6
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -1,5 +1,7 @@
def can_build(env, platform):
return env.editor_build
# 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):