On 11/22/16, 8:05 AM, "Harbs" <[email protected]> wrote:
>Yes. I know. But what are those CONFIG settings?
They are just dummy values. AFAIK, there is no way in Ant to and another
<arg value="<put something here" />
tag at execution time. So the only solution I could think of was to put
in lines like:
<arg value="${extlib_arg}" />
But if you don't specify extlib_arg it gets sent to the compiler as
-${extlib_arg} which the compiler says is an invalid argument, and I think
I also couldn't just set it to "". So I chose dummy conditional compile
flags since that the code doesn't care about.
If there is a better way that's fine with me.
-Alex