Debug.iss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. AppVersion=1.2.3
  14. ; These settings enable debugging
  15. UseSetupLdr=no
  16. OutputDir={#CompilerPath}
  17. OutputBaseFilename=Setup
  18. PrivilegesRequired=lowest
  19. [Languages]
  20. Name: en; MessagesFile: "..\..\Files\Default.isl"
  21. Name: nl; MessagesFile: "..\..\Files\Languages\Dutch.isl"
  22. [Files]
  23. Source: "..\..\Examples\MyProg.exe"; DestDir: "{app}"
  24. Source: "..\..\Examples\MyProg.chm"; DestDir: "{app}"
  25. Source: "..\..\Examples\Readme.txt"; DestDir: "{app}"; Flags: isreadme
  26. [Code]
  27. function InitializeSetup: Boolean;
  28. begin
  29. Result := True;
  30. end;