1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/common/makensis.md
2018-07-30 11:15:47 +05:30

16 lines
359 B
Markdown

# makensis
> Cross-platform compiler for NSIS installers.
> It compiles a NSIS script into a Windows installer executable.
- 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}}`
- Print help for a specific command:
`makensis -CMDHELP {{command}}`