Hi,
I need a way to run a <exec> for multiple files, since idlj can't
process wildcards. I have some 30 idl files which I would like to
include in a build.xml. So my question is: How do I put in here:
<target name="StdIDL" depends="init">
<echo> Generating Std stubs, helper classes and ties from IDL </echo>
<exec executable="idlj">
<arg value="-fall"/>
<arg value="-td"/>
<arg value="${build}\generated"/>
<arg value="${src}\_____________"/> <!-- what goes here ? -->
</exec>
</target>
The amount of idl files for processing will grow over time, so I
need some wildcard approach.
TIA,
Bernd
---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org
|