2022-08-28 18:27:45 +00:00
|
|
|
# Prior to .NET Core, we supported these: ["windows", "macos", "linuxbsd", "android", "haiku", "web", "ios"]
|
2021-09-12 18:23:05 +00:00
|
|
|
# Eventually support for each them should be added back (except Haiku if not supported by .NET Core)
|
2022-08-24 18:05:23 +00:00
|
|
|
supported_platforms = ["windows", "macos", "linuxbsd"]
|
2020-03-18 16:40:04 +00:00
|
|
|
|
|
|
|
|
2018-05-30 17:11:33 +00:00
|
|
|
def can_build(env, platform):
|
2022-09-06 01:23:55 +00:00
|
|
|
if env["arch"].startswith("rv"):
|
|
|
|
return False
|
2017-10-02 21:24:00 +00:00
|
|
|
|
2022-09-06 01:23:55 +00:00
|
|
|
if env["tools"]:
|
|
|
|
env.module_add_dependencies("mono", ["regex"])
|
2017-10-02 21:24:00 +00:00
|
|
|
|
2022-09-06 01:23:55 +00:00
|
|
|
return True
|
2022-08-03 10:38:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
platform = env["platform"]
|
2020-03-18 16:40:04 +00:00
|
|
|
|
2022-08-03 10:38:37 +00: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 14:15:00 +00:00
|
|
|
|
2017-10-02 21:24:00 +00:00
|
|
|
|
2018-06-26 19:03:42 +00:00
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2020-03-30 06:28:32 +00:00
|
|
|
"CSharpScript",
|
|
|
|
"GodotSharp",
|
2018-06-26 19:03:42 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_path():
|
2020-03-30 06:28:32 +00:00
|
|
|
return "doc_classes"
|
2018-06-26 19:03:42 +00:00
|
|
|
|
|
|
|
|
2019-03-01 20:51:20 +00:00
|
|
|
def is_enabled():
|
|
|
|
# The module is disabled by default. Use module_mono_enabled=yes to enable it.
|
|
|
|
return False
|