citra-qt-installer/scripts/msvc-canary.qs

19 lines
613 B
Text
Raw Permalink Normal View History

2017-08-20 04:58:36 +02:00
function Component() {
if (systemInfo.kernelType === "winnt") {
2017-09-07 15:35:28 +02:00
component.setValue("Virtual", "true"); // Hidden by default
2017-08-20 04:58:36 +02:00
component.setValue("Default", "false"); // bleeding
2017-10-19 06:13:22 +02:00
component.setValue("Enabled", "false");
2017-08-20 04:58:36 +02:00
} else {
component.setValue("Virtual", "true");
component.setValue("Enabled", "false");
}
}
Component.prototype.createOperations = function()
{
component.createOperations();
component.addOperation("CreateShortcut", "@TargetDir@/canary/citra-qt.exe", "@StartMenuDir@/Citra Canary.lnk",
"workingDirectory=@TargetDir@/canary");
2017-08-20 04:58:36 +02:00
}