You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to eclipse-...@googlegroups.com
Hi,
I am looking for some help to set Eclipse target platform using command line.
The requirement is to run an application ( specifically ant runner from command line) which needs different target platform from installed eclipse.
Is there way to set the target platform using command line parameter ?
-- Regards, Santosh Kumar
Vishwas
unread,
Aug 21, 2012, 4:09:20 AM8/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
I think the "base localtion" property in the build.xml of PDE specifies the target . so you can pass that as key and value as path of your target platform .
<arg value="-DbaseLocation=${baseLocation}" />
<arg value="-Dbaseos=${baseos}" />
<arg value="-Dbasews=${basews}" />
I think passing -DbaseLocation="/CUSTOM-PATH" will set the target platform for the ant runner