views:

46

answers:

1

I don't have eclipse on my system at all, but I have on my hands an eclipse project (flex) that I would like to compile and I was wondering if there was any way to do it with minimal to no changes having to be made. Is this possible?

+1  A: 

I am not aware of a full automatic process which would take a Flex Eclipse project and generate the build.xml.

You could try and take advantage of your eclipse environment to write a ant builder:

alt text

alt text


You can also try flex2ant to add a specific Ant task to the Ant installation that is part of the Eclipse IDE, therefore making this task visible to the Eclipse environment.

That would facilitate the manual process mentioned above.

VonC
Thanks, but that's for java only I believe, this is a flex project. :/
Confused
@Confused: Updated your question's tags to help make this clearer. Otherwise, I would have suggested ant4eclipse BTW.
Chris Lercher