Changed: Create shortcut in menu for Installer

This commit is contained in:
kervala 2016-06-19 21:06:49 +02:00
parent 873254cd09
commit 12aa86e6ae

View file

@ -724,6 +724,26 @@ void COperationDialog::copyInstaller()
QFile::rename(oldInstallerFullPath, newInstallerFullPath);
}
}
// create menu directory if defined
QString path = config->getMenuDirectory();
if (!path.isEmpty())
{
QDir dir;
if (!dir.mkpath(path))
{
qDebug() << "Unable to create directory" << path;
}
}
// create installer link in menu
QString executable = newInstallerFullPath;
QString shortcut = config->getInstallerMenuLinkFullPath();
QString desc = "Ryzom Installer";
createLink(executable, shortcut, "", "", desc);
}
// TODO: create shortcuts for installer