You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`${name}`| Directory with the native application and other needed assets. |
61
+
|`${name}-${version}-runnable.jar`| Runnable JAR file. |
62
+
|`${name}_${version}.deb`| DEB package file if it's executed on GNU/Linux (requires **dpkg-deb**). |
63
+
|`${name}_${version}.rpm`| RPM package file if it's executed on GNU/Linux (requires **alien** & **rpmbuild**). |
64
+
|`${name}_${version}.exe`| Installer file if it's executed on Windows (requires [**Inno Setup**](http://www.jrsoftware.org/isinfo.php)). |
65
+
|`${name}_${version}.dmg`| Disk image file if it's executed on Mac OS X (requires **hdiutil**). |
66
66
67
67
> :warning: DEB, RPM, EXE installer and DMG files will be ommited if `generateInstaller` plugin property is `false` or if target platform is different from execution platform.
68
68
@@ -117,11 +117,11 @@ If icons are located in `assets` folders, it would not be necessary to specify t
117
117
<project>/
118
118
└── assets/
119
119
├── linux/
120
-
│ └── projectname.png # on GNU/Linux it has to be a png image
120
+
│ └── ${name}.png # on GNU/Linux it has to be a png image
121
121
├── macosx/
122
-
│ └── projectname.icns # on Mac OS X it has to be a icns file
122
+
│ └── ${name}.icns # on Mac OS X it has to be a icns file
123
123
└── windows/
124
-
└── projectname.ico # on Windows it has to be a ico file
124
+
└── ${name}.ico # on Windows it has to be a ico file
125
125
```
126
126
127
127
> **projectname** corresponds to `name` plugin property.
0 commit comments