diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-08-04 19:11:01 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2022-08-04 20:00:19 +0200 |
commit | 951a1016d3c381252d2d32131c1ad1ec68a2b190 (patch) | |
tree | dab061435f41bf3f4a14589c43bf3859e4d436b4 /modules/gdscript | |
parent | bed2482ce20fb9efdf4caed73df8032c5c6dea04 (diff) |
[Scons] Implement module dependency sorting.
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.
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/config.py b/modules/gdscript/config.py index 61ce6185a5..a7d5c406e9 100644 --- a/modules/gdscript/config.py +++ b/modules/gdscript/config.py @@ -1,4 +1,5 @@ def can_build(env, platform): + env.module_add_dependencies("gdscript", ["jsonrpc", "websocket"], True) return True |