mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
24 lines
363 B
Python
24 lines
363 B
Python
|
|
|
|
def can_build(env, platform):
|
|
if not env["tools"]:
|
|
return False
|
|
|
|
env.module_add_dependencies("text_editor", ["freetype"], True)
|
|
env.module_add_dependencies("text_editor", ["editor_code_editor"], False)
|
|
|
|
return True
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"TextEditorFile",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|