mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
6 lines
139 B
Python
6 lines
139 B
Python
|
def can_build(env, platform):
|
||
|
return platform == 'iphone' or platform == 'osx' or platform == 'windows'
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|