config.py 275 B

1234567891011
  1. def can_build(platform):
  2. return True
  3. def configure(env):
  4. # Tools only, disabled for non-tools
  5. # TODO: Find a cleaner way to achieve that
  6. if (env["tools"] == "no"):
  7. env["module_tinyexr_enabled"] = "no"
  8. env.disabled_modules.append("tinyexr")