Files
SilentDragonXLite/src/scripts/windowsinstaller/packages/com.zecqtwallet/meta/installscript.qs
2018-10-30 22:18:18 -07:00

17 lines
425 B
Plaintext

function Component()
{
// default constructor
}
Component.prototype.createOperations = function()
{
// call default implementation to actually install README.txt!
component.createOperations();
if (systemInfo.productType === "windows") {
component.addOperation("CreateShortcut", "@TargetDir@/zec-qt-wallet.exe", "@StartMenuDir@/zecqtwallet.lnk",
"workingDirectory=@TargetDir@");
}
}