mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
Relintai
91fe9ed8ca
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.
- Faless
951a1016d3
9 lines
129 B
Python
9 lines
129 B
Python
|
|
def can_build(env, platform):
|
|
env.module_add_dependencies("vorbis", ["ogg"])
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|