[Scons-users] Problem adding a dependency
Dirk Bächle
tshortik at gmx.de
Tue May 19 20:24:27 EDT 2015
Hi Mark,
On 20.05.2015 01:50, Mark McWiggins wrote:
> Hi All,
>
> I'm trying to make sure that some XML files are always rebuilt when the IDL result file that the IDL process that
> gets kicked off is changed. My SConscript file:
>
> [...]
>
> tgt = e.Command('result_Autogen.idl','stcCore.xml', doStcCore)
>
if you want to rebuild the XML file(s) (=target) when the IDL (=source) changes, shouldn't this be
tgt = e.Command('stcCore.xml', 'result_Autogen.idl', doStcCore)
then?
Best regards,
Dirk
More information about the Scons-users
mailing list