diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-08-11 12:11:28 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-11-26 13:55:28 +0200 |
commit | 200828276e0f37bfd46068ea5dc5f03ebb2e1552 (patch) | |
tree | 6a5cda8b9b06ba35e1fc15f490400d5bde4cd39a /modules/text_server_adv/config.py | |
parent | b9f441e81e89728f284f61991e14748208817efd (diff) | |
download | redot-engine-200828276e0f37bfd46068ea5dc5f03ebb2e1552.tar.gz |
[Complex Text Layouts] Implement ICU / HarfBuzz based TextServer module.
Diffstat (limited to 'modules/text_server_adv/config.py')
-rw-r--r-- | modules/text_server_adv/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/text_server_adv/config.py b/modules/text_server_adv/config.py index 1c8cd12a2d..22482fce24 100644 --- a/modules/text_server_adv/config.py +++ b/modules/text_server_adv/config.py @@ -1,5 +1,6 @@ def can_build(env, platform): - return True + return env.module_check_dependencies("text_server_adv", ["freetype"]) + def configure(env): pass |