2017-05-26 21:49:49 -03:00
|
|
|
def can_build(platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
def configure(env):
|
2017-06-30 18:14:59 +02:00
|
|
|
# Tools only, disabled for non-tools
|
|
|
|
# TODO: Find a cleaner way to achieve that
|
2017-09-25 00:04:49 -04:00
|
|
|
if not env['tools']:
|
2017-09-25 00:27:32 -04:00
|
|
|
env['module_tinyexr_enabled'] = False
|
2017-06-30 18:14:59 +02:00
|
|
|
env.disabled_modules.append("tinyexr")
|