7 lines
128 B
Python
7 lines
128 B
Python
|
def can_build(env, platform):
|
||
|
return env.editor_build and platform not in ["android", "ios"]
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
pass
|