You can do this in Ant 1.7.1 without any extensions:

<property id="value.3" value="3"/>
<property id="value.4" value="4"/>
<property name="id" value="3"/>
<property name="value.id" refid="value.${id}"/>
<echo>${value.id}</echo>

I use this to set up builds for different platforms. For example,

<property id="cc.flags.arm" value="..."/>
<property id="cc.flags.x86" value="..."/>
<property id="cc.flags.mips" value="..."/>
<property name="cc.flags" refid="cc.flags.${arch}"/>

Daniel

EetieD wrote:
Hi,

I was wondering if it is possible to use 'dynamic declarations' within ANT.
Please check the example below. In the line '<echo>${value.${id}}</echo>', I
would like to print a value which is dependant on the id. But for now, I
cannot use this construction, because it prints '${value.${id}}' literaly.
If possible, how can I still use this construction?
I hope someone can help. Thanks!!

EetieD


<target name="check.numberr">
        <var name="value.3" value="3" />
        <var name="value.4" value="4" />
        <var name="id" value="3" />     <!-- now it is 3, but it can also be 4 
-->

        <echo>${value.${id}}</echo> <!-- how to use this? -->
        <echo>${value.3}</echo>       <!-- this works -->
</target>


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@ant.apache.org
For additional commands, e-mail: user-h...@ant.apache.org

Reply via email to