diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-05-22 03:12:54 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-05-22 17:44:33 +0200 |
commit | e3a54152e4767e2835369aeaa23578d818903cea (patch) | |
tree | 92c3a3a42c745624e0450e6cb7208f3bd37ef824 /modules/mono/config.py | |
parent | 9239412027b6c25009efab69dc39650e0d76c56d (diff) | |
download | redot-engine-e3a54152e4767e2835369aeaa23578d818903cea.tar.gz |
Add SCons option to not build C# solutions
Diffstat (limited to 'modules/mono/config.py')
-rw-r--r-- | modules/mono/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index d41f3755b5..7980a86cb3 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -30,6 +30,7 @@ def configure(env): ) 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 |