I need to add platform-specific build variables to a SCons script I'm writing, and to do this, as far as I know, I need to create a Construction Environment before defining the variables so that I can actually check the platform (env['PLATFORM'] etc.) If I do this, I have to append the variables afterwards, but for some reason it's not working.
env = Environment()
vars = Variables()
if env['PLATFORM'] == 'win32':
default_prefix = 'C:\Program Files\Example'
elif env['PLATFORM'] == 'posix':
default_prefix = '/usr/local/example'
vars.Add(PathVariable('prefix', 'installation path', default_prefix))
env.Append(variables = vars)
print env['prefix'] # error
I've found that a workaround is to just create the Environment again
env = Environment(variables = var)
but I was wondering if there's a better way, and why appending it doesn't work in the first place.