I am very new to WAF. I have configuration function like:
def configure(ctx):
########################################################################
# **/myexe does not work too; also abs path in path_list does not work!
ctx.find_program('myexe', var='MYEXE', path_list=['mydir/here'])
and it does not find myexe
binary. Only if I pass 'mydir/here/this_dir'! It seems that find_program()
is not recursive. How to do it in recursive way? Maybe another method?