diff options
author | Ignacio Roldán Etcheverry <ignalfonsore@gmail.com> | 2022-09-06 03:23:55 +0200 |
---|---|---|
committer | Ignacio Roldán Etcheverry <ignalfonsore@gmail.com> | 2022-09-07 16:36:36 +0200 |
commit | f784fb200034629318df122b0651a00de2d7007e (patch) | |
tree | a8f9f4a0e3332d9ad318b5842160c3f467fccc8a /modules/mono/config.py | |
parent | 4b164b8e4790cfeb597b763123560b59a96458e5 (diff) | |
download | redot-engine-f784fb200034629318df122b0651a00de2d7007e.tar.gz |
C#: Replace libnethost dependency to find hostfxr
We want to replace libnethost as it gives us issues with some compilers.
Our implementation tries to mimic libnethost's hostfxr_resolver search
logic. We try to use the same function names for easier comparing in
case we need to update this in the future.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index ad78c8c898..15fe79ef8c 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -4,23 +4,13 @@ supported_platforms = ["windows", "macos", "linuxbsd"] def can_build(env, platform): - return not env["arch"].startswith("rv") + if env["arch"].startswith("rv"): + return False + if env["tools"]: + env.module_add_dependencies("mono", ["regex"]) -def get_opts(platform): - from SCons.Variables import BoolVariable, PathVariable - - default_mono_static = platform in ["ios", "web"] - default_mono_bundles_zlib = platform in ["web"] - - return [ - PathVariable( - "dotnet_root", - "Path to the .NET Sdk installation directory for the target platform and architecture", - "", - PathVariable.PathAccept, - ), - ] + return True def configure(env): |