Debug.iss 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ; -- Debug.iss --
  2. ; Opened when you run the Compil32 project in Debug mode from the Delphi IDE
  3. ; Same for ISCmplr, ISCC, and ISPP and for any of the islzma projects
  4. ; Use it to test the compiler or Setup or the uninstaller
  5. ; The Setup project enables logging to Setup.log when you run it
  6. #pragma message "ɯɐɹƃoɹd ʎɯ"
  7. #include "..\..\setup.allowedpublickeys.iss"
  8. #include "Debug2.iss"
  9. [Setup]
  10. AppName=ɯɐɹƃoɹd ʎɯ
  11. AppVerName=My Program version 1.5
  12. DefaultDirName={autopf}\My Program
  13. DefaultGroupName=My Program
  14. AppVersion=1.2.3
  15. WizardStyle=modern dynamic
  16. DisableDirPage=no
  17. DisableProgramGroupPage=no
  18. ; This enables debugging
  19. UseSetupLdr=no
  20. OutputDir={#CompilerPath}
  21. OutputBaseFilename=Setup
  22. PrivilegesRequired=lowest
  23. ; This makes a task dialog show at startup
  24. ; UsePreviousPrivileges=no
  25. ; PrivilegesRequiredOverridesAllowed=dialog
  26. ; This enables RTL and scaling for testing
  27. ;[LangOptions]
  28. ; RightToLeft=true
  29. ; DialogFontSize=12
  30. [Languages]
  31. Name: en; MessagesFile: "..\..\Files\Default.isl"
  32. Name: nl; MessagesFile: "..\..\Files\Languages\Dutch.isl"
  33. [Files]
  34. Source: "..\..\Examples\MyProg.exe"; DestDir: "{app}"
  35. Source: "..\..\Examples\MyProg.chm"; DestDir: "{app}"
  36. Source: "..\..\Examples\Readme.txt"; DestDir: "{app}"; Flags: isreadme
  37. [Icons]
  38. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  39. [Messages]
  40. BeveledLabel=BeveledLabel
  41. [Code]
  42. function InitializeSetup: Boolean;
  43. begin
  44. Result := True;
  45. end;