Debug.iss 890 B

123456789101112131415161718192021222324252627282930313233
  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. #pragma message "ɯɐɹƃoɹd ʎɯ"
  6. #include "Debug2.iss"
  7. [Setup]
  8. AppName=ɯɐɹƃoɹd ʎɯ
  9. AppVerName=My Program version 1.5
  10. DefaultDirName={autopf}\My Program
  11. UseSetupLdr=0
  12. OutputDir=.
  13. AppVersion=1.2.3
  14. OutputBaseFilename=Setup
  15. PrivilegesRequired=lowest
  16. [Languages]
  17. Name: en; MessagesFile: "compiler:Default.isl"
  18. Name: nl; MessagesFile: "..\..\Files\Languages\Dutch.isl"
  19. [Files]
  20. Source: "..\..\Examples\MyProg.exe"; DestDir: "{app}"
  21. Source: "..\..\Examples\MyProg.chm"; DestDir: "{app}"
  22. Source: "..\..\Examples\Readme.txt"; DestDir: "{app}"; Flags: isreadme
  23. [Code]
  24. function InitializeSetup: Boolean;
  25. begin
  26. Result := True;
  27. end;