mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
8 lines
231 B
Python
8 lines
231 B
Python
|
|
def can_build(platform):
|
||
|
|
return platform != "android" and platform != "ios"
|
||
|
|
|
||
|
|
def configure(env):
|
||
|
|
if not env['tools']:
|
||
|
|
env['module_thekla_unwrap_enabled'] = False
|
||
|
|
env.disabled_modules.append("thekla_unwrap")
|