Reputation: 401
I'm using waf's bld.recurse to call a wscript in a subfolder. I need that operation to complete before the calling wscript continues on. How do I tell waf to wait for all the calls to bld()
in the sub-wscript to finish before starting the bld
calls in the calling wscript?
Upvotes: 1
Views: 27
Reputation: 401
Found the solution here https://waf.io/book/#_build_groups. I just needed to call bld.add_group()
after bld.recurse()
.
Upvotes: 1