diff options
| author | Rémi Verschelde | 2016-10-13 21:48:06 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-10-15 12:01:28 +0200 |
| commit | 8311a78df5cdf257297c1ec7493cb098dc76f010 (patch) | |
| tree | b8d84615a8b5429516f18253e0b3e201869bf53a /modules/squish/config.py | |
| parent | 8981ff8a84e8cc6967afe3a11613e7d72d8ac599 (diff) | |
| download | godot-8311a78df5cdf257297c1ec7493cb098dc76f010.tar.gz godot-8311a78df5cdf257297c1ec7493cb098dc76f010.tar.zst godot-8311a78df5cdf257297c1ec7493cb098dc76f010.zip | |
Diffstat (limited to 'modules/squish/config.py')
| -rw-r--r-- | modules/squish/config.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/squish/config.py b/modules/squish/config.py new file mode 100644 index 000000000..d28d9c702 --- /dev/null +++ b/modules/squish/config.py @@ -0,0 +1,10 @@ + +def can_build(platform): + return True + +def configure(env): + # Tools only, disabled for non-tools + # TODO: Find a cleaner way to achieve that + if (env["tools"] == "no"): + env["module_squish_enabled"] = "no" + env.disabled_modules.append("squish") |
