Debug.iss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ; -- Debug.iss --
  2. ; Opened when you run the ISIDE 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. ; DisableWelcomePage=no
  17. DisableDirPage=no
  18. DisableProgramGroupPage=no
  19. ; This enables debugging
  20. UseSetupLdr=no
  21. OutputDir={#CompilerPath}
  22. OutputBaseFilename=Setup
  23. PrivilegesRequired=lowest
  24. SetupArchitecture=x64
  25. ; This makes a task dialog show at startup
  26. ; UsePreviousPrivileges=no
  27. ; PrivilegesRequiredOverridesAllowed=dialog
  28. ; This enables RTL and scaling for testing
  29. ;[LangOptions]
  30. ; RightToLeft=true
  31. ; DialogFontSize=12
  32. [Languages]
  33. Name: en; MessagesFile: "compiler:Default.isl"
  34. Name: nl; MessagesFile: "compiler:Languages\Dutch.isl"
  35. [Files]
  36. Source: "..\..\Examples\MyProg.exe"; DestDir: "{app}"
  37. Source: "..\..\Examples\MyProg.chm"; DestDir: "{app}"
  38. Source: "..\..\Examples\Readme.txt"; DestDir: "{app}"; Flags: isreadme
  39. [Icons]
  40. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  41. [Messages]
  42. BeveledLabel=BeveledLabel
  43. [Code]
  44. function InitializeSetup: Boolean;
  45. begin
  46. Result := True;
  47. end;