9 lines
122 B
Python
9 lines
122 B
Python
def can_build(env, platform):
|
|
return True;
|
|
|
|
def configure(env):
|
|
pass;
|
|
|
|
def get_icons_path():
|
|
return "./icons"
|