Debug.iss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. ; 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. ; This makes a task dialog show at startup
  25. ; UsePreviousPrivileges=no
  26. ; PrivilegesRequiredOverridesAllowed=dialog
  27. ; This enables RTL and scaling for testing
  28. ;[LangOptions]
  29. ; RightToLeft=true
  30. ; DialogFontSize=12
  31. [Languages]
  32. Name: en; MessagesFile: "..\..\Files\Default.isl"
  33. Name: nl; MessagesFile: "..\..\Files\Languages\Dutch.isl"
  34. [Files]
  35. Source: "..\..\Examples\MyProg.exe"; DestDir: "{app}"
  36. Source: "..\..\Examples\MyProg.chm"; DestDir: "{app}"
  37. Source: "..\..\Examples\Readme.txt"; DestDir: "{app}"; Flags: isreadme
  38. [Icons]
  39. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  40. [Messages]
  41. BeveledLabel=BeveledLabel
  42. [Code]
  43. function InitializeSetup: Boolean;
  44. begin
  45. Result := True;
  46. end;