2020-08-11 09:10:23 +00:00
|
|
|
def can_build(env, platform):
|
2021-02-18 13:45:28 +00:00
|
|
|
return True
|
2020-08-11 09:11:28 +00:00
|
|
|
|
2020-08-11 09:10:23 +00:00
|
|
|
|
2022-08-03 10:38:37 +00:00
|
|
|
def get_opts(platform):
|
|
|
|
from SCons.Variables import BoolVariable
|
|
|
|
|
|
|
|
return [
|
|
|
|
BoolVariable("graphite", "Enable SIL Graphite smart fonts support", True),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2020-08-11 09:10:23 +00:00
|
|
|
def configure(env):
|
|
|
|
pass
|
2021-08-27 21:19:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
"TextServerAdvanced",
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|