diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-09-25 11:05:28 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-09-25 11:08:01 +0200 |
commit | cfd564b385f261d790d52c58be9344adf7d74f0e (patch) | |
tree | bdbb19b4cb3207e49a82a8ea123320c88ad4d263 /modules/mono/config.py | |
parent | 9f8a923b92cc91199dc8a95694242aeda9e6fd49 (diff) | |
download | redot-engine-cfd564b385f261d790d52c58be9344adf7d74f0e.tar.gz |
Enable the `copy_mono_root` SCons option by default
This closes #41652.
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index cd659057ef..95459a4779 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -23,17 +23,17 @@ def configure(env): envvars.Add( PathVariable( "mono_prefix", - "Path to the mono installation directory for the target platform and architecture", + "Path to the Mono installation directory for the target platform and architecture", "", 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("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)) envvars.Add( BoolVariable( - "copy_mono_root", "Make a copy of the mono installation directory to bundle with the editor", False + "copy_mono_root", "Make a copy of the Mono installation directory to bundle with the editor", True ) ) |