I have a target in waf
, which depends on multiple other files. There is a program which lists
those dependencies, and I want to use it, and pass to waf
. I.e, if I have a target T
, there
is a program which lists all the dependencies for T
. But I'm not clear as to how to pass this
to bld.add_manual_dependency()
.
A single file as dependency seems to be working fine:
bld.add_manual_dependency(bld.path.find_or_declare('T'), bld.path.find_resource('Dep1'))
But if I pass a list as the second argument, seems to accept, but doesnt work!.
I want to know how to pass multiple files (not ant_glob()
, but selected by the program).