tags:

views:

14

answers:

1

I have a Eclipse PDE build that creates a product. So far so good, I can create and run my product with the Headless PDE installer.

I want to further use my build product as a "Target-Platform" to develop add-ons on it. However, the problem I have is that this build does not contain the source code internally.

My question is, how can I setup my PDE build to also include the source code? (this would be an optional operation, as I would like to enable this only when creating a "source" version for internal development)

A: 

You can do that

Export Wizard -> Options -> Export source

you could save that as different ant script.

01