Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] How to generated launcher.ini with Tycho

Hi , I git clone http://git.eclipse.org/gitroot/epp/org.eclipse.epp.packages.git product and the execute the cmd "mvn clean package -Pepp.package.cpp", the I can see /org.eclipse.epp.package.cpp.product/target/products/epp.package.cpp/linux/gtk/x86_64/eclipse/
with binrary "eclipse" and "eclipse.ini"; but when I modify the /org.eclipse.epp.package.cpp.product/epp.product.
from 
<launcher name="eclipse">
      <solaris/>
      <win useIco="false">
         <bmp/>
      </win>
   </launcher>
To
<launcher name="penv">
      <solaris/>
      <win useIco="false">
         <bmp/>
      </win>
   </launcher>
and then execute the cmd "mvn clean package -Pepp.package.cpp" ,in the generate folder /org.eclipse.epp.package.cpp.product/target/products/epp.package.cpp/linux/gtk/x86_64/eclipse/ , I can see binary "eclipse"、"penv" and "eclipse.ini"。But actually I want to generate "penv" and "penv.ini". I have no idea about this. Can someone help me?
On 8/22/2018 22:31孙川<sunchuanstc@xxxxxxx> wrote:
Hi,I am a new user with Tycho。When I buid my RCP product with PDE。it works。the launcher name is "penv" and the configuration name is "penv.ini".But when I build with tycho(0.22.0),the launcher name is "penv" but the configuration name is "eclipse.ini"。Why? 
This is my epp.product
<launcher name="penv">
      <solaris/>
      <win useIco="false">
         <bmp/>
      </win>
 </launcher>


Back to the top