1 # Instantiate an extension of Environment with custom functions
2 # such as "jcompile" and "jtest".
3 e = JEnvironment(...)
4
5 # The following hack allows to avoid the Import("*") call and the exports
6 # parameter of the SConscript() call in SConscript files.
7 SCons.Script._SConscript.GlobalDict.update(
8 {
9 "e": e,
10 "jcompile": e.jcompile,
11 "jtest": e.jtest,
12 }
13 )
