citra-qt-installer/scripts/msvc-nightly.qs
2017-10-19 15:13:22 +11:00

18 lines
612 B
Text

function Component() {
if (systemInfo.kernelType === "winnt") {
component.setValue("Virtual", "true"); // Hidden by default
component.setValue("Default", "false"); // msvc
component.setValue("Enabled", "false");
} else {
component.setValue("Virtual", "true");
component.setValue("Enabled", "false");
}
}
Component.prototype.createOperations = function()
{
component.createOperations();
component.addOperation("CreateShortcut", "@TargetDir@/nightly/citra-qt.exe", "@StartMenuDir@/Citra Nightly.lnk",
"workingDirectory=@TargetDir@/nightly");
}