2020-03-11 01:34:10 +01:00
|
|
|
|
|
|
|
supported_platforms = ['windows', 'osx', 'x11', 'server', 'android', 'haiku', 'javascript', 'iphone']
|
|
|
|
|
|
|
|
|
2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2017-10-02 23:24:00 +02:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
2019-03-01 21:51:20 +01:00
|
|
|
def configure(env):
|
2020-03-11 01:34:10 +01:00
|
|
|
platform = env['platform']
|
|
|
|
|
|
|
|
if platform not in supported_platforms:
|
2019-11-10 17:10:38 +01:00
|
|
|
raise RuntimeError('This module does not currently support building for this platform')
|
|
|
|
|
2019-03-01 21:51:20 +01:00
|
|
|
env.use_ptrcall = True
|
|
|
|
env.add_module_version_string('mono')
|
2017-10-02 23:24:00 +02:00
|
|
|
|
2020-03-17 16:26:09 +01:00
|
|
|
from SCons.Script import BoolVariable, PathVariable, Variables, Help
|
2019-06-04 16:15:00 +02:00
|
|
|
|
2020-03-11 01:34:10 +01:00
|
|
|
default_mono_static = platform in ['iphone', 'javascript']
|
|
|
|
default_mono_bundles_zlib = platform in ['javascript']
|
|
|
|
|
2019-06-04 16:15:00 +02:00
|
|
|
envvars = Variables()
|
2020-05-09 17:09:49 +02:00
|
|
|
envvars.Add(
|
|
|
|
PathVariable(
|
|
|
|
"mono_prefix",
|
|
|
|
"Path to the mono installation directory for the target platform and architecture",
|
|
|
|
"",
|
|
|
|
PathVariable.PathAccept,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
envvars.Add(BoolVariable("mono_static", "Statically link mono", default_mono_static))
|
|
|
|
envvars.Add(BoolVariable("mono_glue", "Build with the mono glue sources", True))
|
2020-05-22 03:12:54 +02:00
|
|
|
envvars.Add(BoolVariable("build_cil", "Build C# solutions", True))
|
2020-05-09 17:09:49 +02:00
|
|
|
envvars.Add(
|
|
|
|
BoolVariable(
|
|
|
|
"copy_mono_root", "Make a copy of the mono installation directory to bundle with the editor", False
|
|
|
|
)
|
|
|
|
)
|
2020-03-11 01:34:10 +01:00
|
|
|
|
|
|
|
# TODO: It would be great if this could be detected automatically instead
|
|
|
|
envvars.Add(BoolVariable('mono_bundles_zlib', 'Specify if the Mono runtime was built with bundled zlib', default_mono_bundles_zlib))
|
|
|
|
|
2019-06-04 16:15:00 +02:00
|
|
|
envvars.Update(env)
|
2020-03-17 16:26:09 +01:00
|
|
|
Help(envvars.GenerateHelpText(env))
|
2019-06-04 16:15:00 +02:00
|
|
|
|
2020-03-11 01:34:10 +01:00
|
|
|
if env['mono_bundles_zlib']:
|
|
|
|
# Mono may come with zlib bundled for WASM or on newer version when built with MinGW.
|
|
|
|
print('This Mono runtime comes with zlib bundled. Disabling \'builtin_zlib\'...')
|
2019-11-10 17:10:38 +01:00
|
|
|
env['builtin_zlib'] = False
|
|
|
|
thirdparty_zlib_dir = "#thirdparty/zlib/"
|
|
|
|
env.Prepend(CPPPATH=[thirdparty_zlib_dir])
|
|
|
|
|
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
|