mirror of
https://github.com/godotengine/godot.git
synced 2025-01-22 18:43:29 -05:00
25 lines
461 B
Python
25 lines
461 B
Python
def can_build(env, platform):
|
|
env.module_add_dependencies("text_server_adv", ["freetype", "msdfgen", "svg"], True)
|
|
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
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"TextServerAdvanced",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|