I have the following requirement for a build graph
x.c
depends on x.h
which depends on y.h
, and x.h
is generated from x.xml
with a separate builder
in our SCons project as we want to start using generation of source code previously placed in the source directories.
However, this currently doesn't work as there seems to be no way to tell the scanner of x.c
to first generate x.h
.
Does SCons support scanning of dependencies in generated source code?