Skip to content

Commit 5063fc2

Browse files
committed
U docs updated
1 parent aa23e13 commit 5063fc2

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ By default it will generate next artifacts in `${outputDirectory} ` folder:
130130
| `${name}-${version}-${platform}.tar.gz` | Compressed tarball containing generated directory `${name}`. | All | |
131131
| `assets` | Directory with all intermediate files generated by JavaPackager. | All | |
132132

133-
> Inno Setup and WiX Toolset installation [guide]().
133+
> **Inno Setup** and **WiX Toolset** installation [guide](docs/windows-tools-guide.md).
134134
135135
### Plugin configuration properties
136136

docs/windows-tools-guide.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Windows tools installation guide
2+
3+
As explained in the [docs](https://github.com/fvarrui/JavaPackager#generated-artifacts), you must install [Inno Setup (iscc)](https://jrsoftware.org/isinfo.php) to generate an EXE installer and [WIX Toolset (candle and light)](https://wixtoolset.org/) to generate a MSI file.
4+
5+
You can install both tools in a simple way using [Chocolatey](https://chocolatey.org/) package manager:
6+
7+
1. [Install Chocolatey](https://chocolatey.org/install).
8+
9+
2. Run next command on CMD or PowerShell as Administrator to install both tools:
10+
11+
```bash
12+
choco install -y innosetup wixtoolset
13+
```
14+
15+
> And both tools will be automatically available in `PATH`.

0 commit comments

Comments
 (0)