tldr/pages/common/makensis.md

18 lines
431 B
Markdown
Raw Normal View History

2018-07-30 06:45:47 +01:00
# makensis
> Cross-platform compiler for NSIS installers.
> It compiles a NSIS script into a Windows installer executable.
2019-06-04 10:25:07 +01:00
> More information: <https://nsis.sourceforge.io/Docs/Chapter3.html>.
2018-07-30 06:45:47 +01:00
- 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:
2018-07-30 06:45:47 +01:00
`makensis -CMDHELP {{command}}`