13
0
livetrax/libs/backends/wscript
Mads Kiilerich d220f477ed wscript: drop unused "mandatory variables" 'top' and 'out' in libs
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.
2023-09-17 07:34:55 -06:00

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)