mirror of
https://github.com/godotengine/godot
synced 2024-11-02 14:43:31 +00:00
951a1016d3
Modules can now call: env.module_add_dependencies(name: str, deps: list, optional: bool) To add required or optional dependencies during the "can_build" step. Required dependencies will be checked and the module will be not be enabled when they are missing, printing a warning to notify the user.
7 lines
134 B
Python
7 lines
134 B
Python
def can_build(env, platform):
|
|
env.module_add_dependencies("msdfgen", ["freetype"])
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|