Debug.iss 1022 B

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