2016-10-13 21:48:06 +02:00
|
|
|
|
|
|
|
def can_build(platform):
|
2016-11-02 22:26:55 +01:00
|
|
|
return True
|
2016-10-13 21:48:06 +02:00
|
|
|
|
2016-11-02 22:29:36 +01:00
|
|
|
|
2016-10-13 21:48:06 +02:00
|
|
|
def configure(env):
|
2016-11-02 22:26:55 +01:00
|
|
|
# Tools only, disabled for non-tools
|
|
|
|
# TODO: Find a cleaner way to achieve that
|
|
|
|
if (env["tools"] == "no"):
|
|
|
|
env["module_squish_enabled"] = "no"
|
|
|
|
env.disabled_modules.append("squish")
|