diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-08-06 00:23:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-06 00:23:41 +0200 |
commit | bd833f8e06da9d2eccc57f9cc632c46cfa57d963 (patch) | |
tree | 8fb5bc1e3edaa64ce26285348aa2ae4f4a94f0fd /modules/text_server_adv/config.py | |
parent | 10f9f20849d81158476dde809019b00c14d040e2 (diff) | |
parent | 066ca976909bbe81d702dfe464f8f5dfbb23d7e3 (diff) |
Merge pull request #63871 from bruvzg/ts_build_options
Add Text Server related options to the build profiles editor.
Diffstat (limited to 'modules/text_server_adv/config.py')
-rw-r--r-- | modules/text_server_adv/config.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/text_server_adv/config.py b/modules/text_server_adv/config.py index 8c8df9b05e..179a2ff378 100644 --- a/modules/text_server_adv/config.py +++ b/modules/text_server_adv/config.py @@ -2,6 +2,14 @@ def can_build(env, platform): return True +def get_opts(platform): + from SCons.Variables import BoolVariable + + return [ + BoolVariable("graphite", "Enable SIL Graphite smart fonts support", True), + ] + + def configure(env): pass |