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