Mono: Fix SCons options added to the wrong environment

This commit is contained in:
Ignacio Etcheverry 2019-06-04 16:15:00 +02:00
parent 42569f566f
commit ff0c863cb1
3 changed files with 10 additions and 13 deletions

View file

@ -47,14 +47,6 @@ def copy_file(src_dir, dst_dir, name):
def configure(env, env_mono):
from SCons.Script import BoolVariable, PathVariable, Variables
envvars = Variables()
envvars.Add(PathVariable('mono_prefix', 'Path to the mono installation directory for the target platform and architecture', '', PathVariable.PathAccept))
envvars.Add(BoolVariable('mono_static', 'Statically link mono', False))
envvars.Add(BoolVariable('copy_mono_root', 'Make a copy of the mono installation directory to bundle with the editor', False))
envvars.Update(env)
bits = env['bits']
is_android = env['platform'] == 'android'