installscript.qs 406 B

12345678910111213
  1. function Component()
  2. {
  3. // default constructor
  4. }
  5. Component.prototype.createOperations = function()
  6. {
  7. component.createOperations();
  8. if (systemInfo.productType === "windows") {
  9. component.addOperation("CreateShortcut", "@TargetDir@/Almond.exe", "@StartMenuDir@/Almond.lnk",
  10. "workingDirectory=@TargetDir@", "iconPath=@TargetDir@/almond.ico", "description=Open Almond");
  11. }
  12. }