2020-03-18 17:40:04 +01:00
|
|
|
supported_platforms = ["windows", "osx", "linuxbsd", "server", "android", "haiku", "javascript", "iphone"]
|
|
|
|
|
|
|
|
|
2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2021-08-29 00:40:32 +02:00
|
|
|
return not env["arch"].startswith("rv")
|
2017-10-02 23:24:00 +02:00
|
|
|
|
|
|
|
|
2019-03-01 21:51:20 +01:00
|
|
|
def configure(env):
|
2020-03-18 17:40:04 +01:00
|
|
|
platform = env["platform"]
|
|
|
|
|
|
|
|
if platform not in supported_platforms:
|
2020-03-30 08:28:32 +02:00
|
|
|
raise RuntimeError("This module does not currently support building for this platform")
|
2019-11-10 17:10:38 +01:00
|
|
|
|
2020-03-30 08:28:32 +02:00
|
|
|
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-18 17:40:04 +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-03-30 08:28:32 +02:00
|
|
|
envvars.Add(
|
|
|
|
PathVariable(
|
|
|
|
"mono_prefix",
|
2020-09-25 11:05:28 +02:00
|
|
|
"Path to the Mono installation directory for the target platform and architecture",
|
2020-03-30 08:28:32 +02:00
|
|
|
"",
|
|
|
|
PathVariable.PathAccept,
|
|
|
|
)
|
|
|
|
)
|
2020-12-06 01:15:17 +01:00
|
|
|
envvars.Add(
|
|
|
|
PathVariable(
|
|
|
|
"mono_bcl",
|
|
|
|
"Path to a custom Mono BCL (Base Class Library) directory for the target platform",
|
|
|
|
"",
|
|
|
|
PathVariable.PathAccept,
|
|
|
|
)
|
|
|
|
)
|
2020-09-25 11:05:28 +02:00
|
|
|
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-03-30 08:28:32 +02:00
|
|
|
envvars.Add(
|
2020-09-25 15:46:26 +02:00
|
|
|
BoolVariable("copy_mono_root", "Make a copy of the Mono installation directory to bundle with the editor", True)
|
2020-03-30 08:28:32 +02:00
|
|
|
)
|
2020-03-18 17:40:04 +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-18 17:40:04 +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'...")
|
2020-03-30 08:28:32 +02:00
|
|
|
env["builtin_zlib"] = False
|
2019-11-10 17:10:38 +01:00
|
|
|
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 [
|
2020-03-30 08:28:32 +02:00
|
|
|
"CSharpScript",
|
|
|
|
"GodotSharp",
|
2018-06-26 21:03:42 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
2020-03-30 08:28:32 +02:00
|
|
|
return "doc_classes"
|
2018-06-26 21:03:42 +02:00
|
|
|
|
|
|
|
|
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
|