-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.py
32 lines (28 loc) · 983 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from SCons.Script import BoolVariable, Dir, Environment, File, SCons, Variables
def can_build(env, platform):
return True
def configure(env):
envvars = Variables()
envvars.Add(BoolVariable('builtin_runtime', 'Use the built-in libraries', True))
envvars.Add(BoolVariable('use_graphite2', 'Enable Graphite2 complementary shaper', True))
envvars.Add(BoolVariable('use_font_wrapper', 'Enable Godot font wrapper', False))
envvars.Update(env)
def get_doc_classes():
return [
"TLICUDataLoader",
"TLFontFace",
"TLBitmapFontFace",
"TLDynamicFontFace",
"TLFontFamily",
"TLShapedString",
"TLShapedAttributedString",
"TLShapedParagraph",
"TLRichTextEdit",
"TLRichTextEditSelection",
"TLLabel",
"TLLineEdit",
"TLFontIterator",
"TLGDFontWrapper"
]
def get_doc_path():
return "doc_classes"