Page 1 of 1

Eclipse, build folder elsewhere.

Posted: Tue May 21, 2013 5:09 pm
by JMD
Is it possible to make build.xml send the compiled stuff in a folder in the desktop for example? How can i do that?

Re: Eclipse, build folder elsewhere.

Posted: Tue May 21, 2013 5:27 pm
by xban1x

Code: Select all

<property name="build" location="build" />
There i believe is set, though i have no knowledge of this :D

Re: Eclipse, build folder elsewhere.

Posted: Tue May 21, 2013 6:46 pm
by jurchiks
Yes, that is the correct directive.
Works with relative paths (location="../../build") and absolute paths (location="C:\build").

Re: Eclipse, build folder elsewhere.

Posted: Tue May 21, 2013 6:54 pm
by JMD
Cool, thanks.