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