2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2018-06-26 19:03:42 +00:00
|
|
|
if platform in ['javascript']:
|
2017-10-02 21:24:00 +00:00
|
|
|
return False # Not yet supported
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2019-03-01 20:51:20 +00:00
|
|
|
def configure(env):
|
|
|
|
env.use_ptrcall = True
|
|
|
|
env.add_module_version_string('mono')
|
2017-10-02 21:24:00 +00:00
|
|
|
|
|
|
|
|
2018-06-26 19:03:42 +00:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
|
|
|
'@C#',
|
|
|
|
'CSharpScript',
|
|
|
|
'GodotSharp',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return 'doc_classes'
|
|
|
|
|
|
|
|
|
2019-03-01 20:51:20 +00:00
|
|
|
def is_enabled():
|
|
|
|
# The module is disabled by default. Use module_mono_enabled=yes to enable it.
|
|
|
|
return False
|