mirror of
https://github.com/godotengine/godot.git
synced 2024-12-17 00:22:49 +00: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
|