mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
9 lines
201 B
Python
9 lines
201 B
Python
def can_build(env, platform):
|
|
if env.editor_build: # Encoder dependencies
|
|
env.module_add_dependencies("basis_universal", ["jpg", "tinyexr"])
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|