default.txt 500 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. NSIS Scheme
  3. for highlight.js
  4. */
  5. ; Includes
  6. !include MUI2.nsh
  7. ; Settings
  8. Name "installer_name"
  9. OutFile "installer_name.exe"
  10. RequestExecutionLevel user
  11. CRCCheck on
  12. !ifdef x64
  13. InstallDir "$PROGRAMFILES64\installer_name"
  14. !else
  15. InstallDir "$PROGRAMFILES\installer_name"
  16. !endif
  17. ; Pages
  18. !insertmacro MUI_PAGE_INSTFILES
  19. ; Sections
  20. Section "section_name" section_index
  21. # your code here
  22. SectionEnd
  23. ; Functions
  24. Function .onInit
  25. MessageBox MB_OK "Here comes a$\n$\rline-break!"
  26. FunctionEnd