Skip to content

Commit fbcde49

Browse files
committed
Merge pull request #94903 from bruvzg/astc_angle
Enable ASTC encoder build when building with ANGLE.
2 parents 52f2290 + fdeea4a commit fbcde49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

modules/astcenc/config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
def can_build(env, platform):
2-
return env.editor_build
2+
# Godot only uses it in the editor, but ANGLE depends on it and we had
3+
# to remove the copy from prebuilt ANGLE libs to solve symbol clashes.
4+
return env.editor_build or env.get("angle_libs")
35

46

57
def configure(env):

0 commit comments

Comments
 (0)