Re: Ant file dependency

2005-08-02 Thread Alexey Kakunin
Thank you, exactly that we need. Ninju Bohra wrote: Take a look at the task and use it to set a property, say idl.has.changed, to true. Then create a seperate target, called invoke.idl.compiler, which contains the task to invoke the idlcompiler. Use the if="idl.has.changed" attribute of

Re: Ant file dependency

2005-08-01 Thread Ninju Bohra
Take a look at the task and use it to set a property, say idl.has.changed, to true. Then create a seperate target, called invoke.idl.compiler, which contains the task to invoke the idlcompiler. Use the if="idl.has.changed" attribute of the target so that the will only be run if the idl.ha

Ant file dependency

2005-08-01 Thread Alexey Kakunin
Hello all! I'm quite new in ant, actuallyI'm migrating from make. Seems it is really great tool, but I have some (probably very stupid) question. For example, I have a target for compiling something by using idl-compiler. To do it I should use exec task to make SomeFile.h from SomeFile.idl.

AW: Ant file dependency

2005-08-01 Thread Jan.Materne
://ant.apache.org/manual/CoreTypes/selectors.html#dependselect >-Ursprüngliche Nachricht- >Von: Nicolas Vervelle [mailto:[EMAIL PROTECTED] >Gesendet: Montag, 1. August 2005 11:47 >An: Ant Users List >Betreff: Re: Ant file dependency > >Hi, > >check to set a prop

Re: Ant file dependency

2005-08-01 Thread Nicolas Vervelle
Hi, check to set a property, and use unless in the target ;) Hope this helps, Nicolas Alexey Kakunin wrote: Hello all! I'm quite new in ant, actuallyI'm migrating from make. Seems it is really great tool, but I have some (probably very stupid) question. For example, I have a target for c

Ant file dependency

2005-08-01 Thread Alexey Kakunin
Hello all! I'm quite new in ant, actuallyI'm migrating from make. Seems it is really great tool, but I have some (probably very stupid) question. For example, I have a target for compiling something by using idl-compiler. To do it I should use exec task to make SomeFile.h from SomeFile.idl.