I'm trying to use different modules (with independent wscript files) across several projects, so that modules can be developed in a one place and can be checked out in many places.
I have a project's top wscript like this:
def configure(cfg):
...
cfg.recurse('a')
cfg.recurse('b')
...
And wscript's in modules from subdirs './a' and './b':
def configure(cfg):
...
cfg.check_cxx(lib='z')
...
So, is there a way to tell waf to check libz only once?