d220f477ed
Variables by these names are only used from the local wscript and when running "waf configure", which already for other reasons only can run at the top-level. These variables are thus not mandatory and not used.
23 lines
491 B
Python
23 lines
491 B
Python
#!/usr/bin/env python
|
|
from waflib.extras import autowaf as autowaf
|
|
|
|
def options(opt):
|
|
autowaf.set_options(opt)
|
|
|
|
def sub_config_and_use(conf, name, has_objects = True):
|
|
conf.recurse(name)
|
|
autowaf.set_local_lib(conf, name, has_objects)
|
|
|
|
def configure(conf):
|
|
autowaf.set_recursive()
|
|
|
|
backends = conf.env['BACKENDS']
|
|
for i in backends:
|
|
sub_config_and_use(conf, i)
|
|
|
|
def build(bld):
|
|
backends = bld.env['BACKENDS']
|
|
|
|
for i in backends:
|
|
bld.recurse(i)
|