2016-10-13 19:48:06 +00:00
|
|
|
def can_build(platform):
|
2016-10-30 17:44:57 +00:00
|
|
|
return True
|
2016-10-13 19:48:06 +00:00
|
|
|
|
|
|
|
def configure(env):
|
2016-10-30 17:44:57 +00:00
|
|
|
# Tools only, disabled for non-tools
|
|
|
|
# TODO: Find a cleaner way to achieve that
|
2017-09-25 04:04:49 +00:00
|
|
|
if not env['tools']:
|
2017-09-25 04:27:32 +00:00
|
|
|
env['module_squish_enabled'] = False
|
2016-10-30 17:44:57 +00:00
|
|
|
env.disabled_modules.append("squish")
|