mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-21 23:05:41 +01:00
19 lines
613 B
Plaintext
19 lines
613 B
Plaintext
function Component() {
|
|
if (systemInfo.kernelType === "winnt") {
|
|
component.setValue("Virtual", "true"); // Hidden by default
|
|
component.setValue("Default", "false"); // bleeding
|
|
component.setValue("Enabled", "false");
|
|
} 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");
|
|
}
|