mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages*: use generic word for help * git: add newline to the end Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: make help and version commands comply with the style guide * java: fix Java name --------- Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
17 lines
431 B
Markdown
17 lines
431 B
Markdown
# makensis
|
|
|
|
> Cross-platform compiler for NSIS installers.
|
|
> It compiles a NSIS script into a Windows installer executable.
|
|
> More information: <https://nsis.sourceforge.io/Docs/Chapter3.html>.
|
|
|
|
- Compile a NSIS script:
|
|
|
|
`makensis {{path/to/file.nsi}}`
|
|
|
|
- Compile a NSIS script in strict mode (treat warnings as errors):
|
|
|
|
`makensis -WX {{path/to/file.nsi}}`
|
|
|
|
- Display help for a specific command:
|
|
|
|
`makensis -CMDHELP {{command}}`
|