Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Installer SFX creation ant"

Line 22: Line 22:
 
<td>"exe" or "sfx"<br>"sfx" produce archive only, "exe" produce archive and link with Windows launcher</td>
 
<td>"exe" or "sfx"<br>"sfx" produce archive only, "exe" produce archive and link with Windows launcher</td>
 
<td>Yes</td>
 
<td>Yes</td>
 +
</tr>
 +
<tr>
 +
<td>command</td>
 +
<td>archive root relative autorun command line, will be executed by native launcher</td>
 +
<td>Yes</td>
 +
</tr>
 +
<tr>
 +
<td>archivefile</td>
 +
<td>path to resulting archive file, correspondednt file extension (".exe" or ".sfx") will be added automaticaly</td>
 +
<td>Yes</td>
 +
</tr>
 +
<tr>
 +
<td>pack200</td>
 +
<td>"true" or "false"</td>
 +
<td>No; defaults is "false".</td>
 
</tr>
 
</tr>
 
</table>
 
</table>

Revision as of 04:39, 13 July 2007

This document describes creation of XSE archives using Ant.

Overview

XSE archive description could be found at Installer SFX creation using XSEBuilder. The org.eclipse.epp.sfx.archive.ant plugin contains ant task for archive file creation.

Ant Tasks

archivetask

Attribute Description Required
rootdir Archive content root directory. Will not be included into archive No; defaults to project basedir.
packagetype "exe" or "sfx"
"sfx" produce archive only, "exe" produce archive and link with Windows launcher
Yes
command archive root relative autorun command line, will be executed by native launcher Yes
archivefile path to resulting archive file, correspondednt file extension (".exe" or ".sfx") will be added automaticaly Yes
pack200 "true" or "false" No; defaults is "false".

Back to the top