Pergunta

I'm trying to compile a 64-bit application using Waf, but the wscript is returning the error:

Source not found: None.

I have heard that this can be due to improper indentation or mixed character encodings, which my wscript does not have.

Any possible solutions/leads to what may be causing this?

Foi útil?

Solução

Found the error! Previously, for my sources I was using:

bld.path.find_resource(file_name) for file_name in

One of the file paths did not exist, so the resource became None. Since I was using absolute file paths, I solved by changing to:

file_name for file_name in
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top