2
0
mirror of https://github.com/godotengine/godot.git synced 2025-03-07 23:32:58 +08:00
godot/modules/tinyexr/config.py
2017-11-15 21:29:33 +01:00

10 lines
268 B
Python

def can_build(platform):
return True
def configure(env):
# Tools only, disabled for non-tools
# TODO: Find a cleaner way to achieve that
if not env['tools']:
env['module_tinyexr_enabled'] = False
env.disabled_modules.append("tinyexr")