HaaliReaderBE300.nsi
上传用户:hmc_gdtv
上传日期:2013-08-04
资源大小:798k
文件大小:1k
源码类别:

Windows Mobile

开发平台:

Visual C++

  1. ; Default names
  2. !ifndef NAME
  3. !define NAME "Haali Reader for BE300"
  4. !endif
  5. !ifndef NSPNAME
  6. !define NSPNAME "HaaliReaderBE300"
  7. !endif
  8. !ifndef VENDOR
  9. !define VENDOR "Haali"
  10. !endif
  11. !ifndef VERSION
  12. !define VERSION "2.0"
  13. !endif
  14. ; The name of the installer
  15. Name "${NAME}"
  16. ; The file to write
  17. OutFile "${NAME} v${VERSION} Setup.exe"
  18. ; License text
  19. LicenseText "You must read the following license before installing:"
  20. LicenseData "LICENSE.txt"
  21. ShowInstDetails show
  22. XPStyle on
  23. Section "Haali Reader"
  24.   SetOutPath $TEMP
  25.   File "setup.exe"
  26.   File "setup.ini"
  27.   File "HaaliReader.cbea"
  28.   HideWindow
  29.   ExecWait "$OUTDIRsetup.exe"
  30.   Delete "$OUTDIRsetup.exe"
  31.   Delete "$OUTDIRsetup.ini"
  32.   Delete "$OUTDIRHaaliReader.cbea"
  33.   SetAutoClose true
  34. SectionEnd