mirror of
https://github.com/godotengine/godot.git
synced 2024-11-23 04:33:29 +00:00
7c74312217
This is still a bit hacky and eventually we should rework the way we handle optional dependencies (especially with regard to builtin/system libs), but it's a simple first step. Fixes #39219.
7 lines
121 B
Python
7 lines
121 B
Python
def can_build(env, platform):
|
|
return env.module_check_dependencies("vorbis", ["ogg"])
|
|
|
|
|
|
def configure(env):
|
|
pass
|