18 lines
394 B
Python
18 lines
394 B
Python
def can_build(env, platform):
|
|
"""AeThex Lang can be built on all platforms."""
|
|
return False # Disabled until API compatibility fixes
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"AeThexScript",
|
|
"AeThexScriptLanguage",
|
|
"AeThexCompiler",
|
|
"AeThexTokenizer",
|
|
"AeThexParser",
|
|
]
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|