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