mirror of
https://github.com/godotengine/godot.git
synced 2025-02-11 22:35:15 +08:00
8 lines
223 B
Python
8 lines
223 B
Python
def can_build(platform):
|
|
return platform != "android" and platform != "ios"
|
|
|
|
def configure(env):
|
|
if not env['tools']:
|
|
env['builtin_thekla_atlas'] = False
|
|
env.disabled_modules.append("thekla_unwrap")
|