2021-09-13 02:23:05 +08:00
|
|
|
# Prior to .NET Core, we supported these: ["windows", "macos", "linuxbsd", "server", "android", "haiku", "javascript", "ios"]
|
|
|
|
# Eventually support for each them should be added back (except Haiku if not supported by .NET Core)
|
|
|
|
supported_platforms = ["windows", "macos", "linuxbsd", "server"]
|
2020-03-19 00:40:04 +08:00
|
|
|
|
|
|
|
|
2018-05-31 01:11:33 +08:00
|
|
|
def can_build(env, platform):
|
2021-08-29 06:40:32 +08:00
|
|
|
return not env["arch"].startswith("rv")
|
2017-10-03 05:24:00 +08:00
|
|
|
|
|
|
|
|
2022-08-03 18:38:37 +08:00
|
|
|
def get_opts(platform):
|
|
|
|
from SCons.Variables import BoolVariable, PathVariable
|
2019-06-04 22:15:00 +08:00
|
|
|
|
2022-07-20 14:28:22 +08:00
|
|
|
default_mono_static = platform in ["ios", "javascript"]
|
2020-03-19 00:40:04 +08:00
|
|
|
default_mono_bundles_zlib = platform in ["javascript"]
|
|
|
|
|
2022-08-03 18:38:37 +08:00
|
|
|
return [
|
2020-03-30 14:28:32 +08:00
|
|
|
PathVariable(
|
2021-09-13 02:23:05 +08:00
|
|
|
"dotnet_root",
|
|
|
|
"Path to the .NET Sdk installation directory for the target platform and architecture",
|
2020-03-30 14:28:32 +08:00
|
|
|
"",
|
|
|
|
PathVariable.PathAccept,
|
2022-08-03 18:38:37 +08:00
|
|
|
),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
platform = env["platform"]
|
2020-03-19 00:40:04 +08:00
|
|
|
|
2022-08-03 18:38:37 +08:00
|
|
|
if platform not in supported_platforms:
|
|
|
|
raise RuntimeError("This module does not currently support building for this platform")
|
|
|
|
|
|
|
|
env.add_module_version_string("mono")
|
2019-06-04 22:15:00 +08:00
|
|
|
|
2017-10-03 05:24:00 +08:00
|
|
|
|
2018-06-27 03:03:42 +08:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-03-30 14:28:32 +08:00
|
|
|
"CSharpScript",
|
|
|
|
"GodotSharp",
|
2018-06-27 03:03:42 +08:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
2020-03-30 14:28:32 +08:00
|
|
|
return "doc_classes"
|
2018-06-27 03:03:42 +08:00
|
|
|
|
|
|
|
|
2019-03-02 04:51:20 +08:00
|
|
|
def is_enabled():
|
|
|
|
# The module is disabled by default. Use module_mono_enabled=yes to enable it.
|
|
|
|
return False
|