godot/modules/mono/config.py
Ignacio Etcheverry 6bb29eb847 Mono: Reorganize build scripts
All build scripts, other than config.py and SCSub, are now located in the build_scripts subdirectory.
2019-04-07 19:03:09 +02:00

27 lines
485 B
Python

def can_build(env, platform):
if platform in ['javascript']:
return False # Not yet supported
return True
def configure(env):
env.use_ptrcall = True
env.add_module_version_string('mono')
def get_doc_classes():
return [
'@C#',
'CSharpScript',
'GodotSharp',
]
def get_doc_path():
return 'doc_classes'
def is_enabled():
# The module is disabled by default. Use module_mono_enabled=yes to enable it.
return False