Hi:
I have a requirement to define a path according to a property.
the command line: ant compile
will use the path :
<path id="test.lib.path.id">
<fileset dir="${lib.dir}/test1">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${lib.dir}/test2">
<include name="**/*.jar"/>
</fileset>
</path>
and the command line: ant -Dtest=true compile
will use the following path:
<path id="test.lib.path.id">
<fileset dir="${lib.dir}/test3">
<include name="**/*.jar"/>
</fileset>
<fileset dir="${lib.dir}/test4">
<include name="**/*.jar"/>
</fileset>
</path>
There are many compile targets will use the path: test.lib.path.id, so
it would be better to define the path a little dynamically, like:
<path id="test.lib.path.id" if="test">
...
</path>
<path id="test.lib.path.id" unless="test">
...
</path>
but I think path does not support this attribute, right?
--
Thanks and Best Regards
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]