Some checks failed
🔗 GHA / 📊 Static checks (push) Has been cancelled
🔗 GHA / 🤖 Android (push) Has been cancelled
🔗 GHA / 🍏 iOS (push) Has been cancelled
🔗 GHA / 🐧 Linux (push) Has been cancelled
🔗 GHA / 🍎 macOS (push) Has been cancelled
🔗 GHA / 🏁 Windows (push) Has been cancelled
🔗 GHA / 🌐 Web (push) Has been cancelled
23 lines
416 B
Python
23 lines
416 B
Python
def can_build(env, platform):
|
|
env.module_add_dependencies("text_server_fb", ["freetype", "msdfgen", "svg"], True)
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def is_enabled():
|
|
# The module is disabled by default. Use module_text_server_fb_enabled=yes to enable it.
|
|
return False
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"TextServerFallback",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|