summaryrefslogtreecommitdiffstats
path: root/modules/mono/config.py
diff options
context:
space:
mode:
authorIgnacio Etcheverry <ignalfonsore@gmail.com>2020-12-06 01:15:17 +0100
committerIgnacio Etcheverry <ignalfonsore@gmail.com>2020-12-06 01:15:20 +0100
commitdd5ace219d3a718938cd4262625129decc8b8e8a (patch)
treee130a61cdbe0e6a1a78ecdd21c6052e42e3c55a8 /modules/mono/config.py
parent93b107ac93db82a2790d6ebf5d0893dd72eb670a (diff)
downloadredot-engine-dd5ace219d3a718938cd4262625129decc8b8e8a.tar.gz
Mono: Add mono_bcl SCons option for a custom BCL location
Makes it let's bothersome to work with builds from our godotengine/godot-mono-builds scripts, as they write the BCL into an output directory separate from the runtime (which is good as two runtimes may share the same BCL).
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r--modules/mono/config.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py
index c4a6b408e6..4c851a2989 100644
--- a/modules/mono/config.py
+++ b/modules/mono/config.py
@@ -27,6 +27,14 @@ def configure(env):
PathVariable.PathAccept,
)
)
+ envvars.Add(
+ PathVariable(
+ "mono_bcl",
+ "Path to a custom Mono BCL (Base Class Library) directory for the target platform",
+ "",
+ 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))
envvars.Add(BoolVariable("build_cil", "Build C# solutions", True))