diff options
| author | Rémi Verschelde | 2017-06-30 18:14:59 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2017-06-30 18:16:38 +0200 |
| commit | cb59236ce938fdf3ffe20b1f77c4f7058ddaadf1 (patch) | |
| tree | 18e1ef8060d5af1ab12b7f47cbf0606adf7a6d3c /modules/tinyexr/config.py | |
| parent | 198bd9db02950d261c83b0c383fe737df3c5f152 (diff) | |
| download | godot-cb59236ce938fdf3ffe20b1f77c4f7058ddaadf1.tar.gz godot-cb59236ce938fdf3ffe20b1f77c4f7058ddaadf1.tar.zst godot-cb59236ce938fdf3ffe20b1f77c4f7058ddaadf1.zip | |
Diffstat (limited to 'modules/tinyexr/config.py')
| -rw-r--r-- | modules/tinyexr/config.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/tinyexr/config.py b/modules/tinyexr/config.py index fb920482f..2e4b96a6b 100644 --- a/modules/tinyexr/config.py +++ b/modules/tinyexr/config.py @@ -4,4 +4,8 @@ def can_build(platform): def configure(env): - pass + # Tools only, disabled for non-tools + # TODO: Find a cleaner way to achieve that + if (env["tools"] == "no"): + env["module_tinyexr_enabled"] = "no" + env.disabled_modules.append("tinyexr") |
