mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-21 22:45:39 +01:00
18 lines
557 B
Plaintext
18 lines
557 B
Plaintext
function Component() {
|
|
if (systemInfo.kernelType === "winnt") {
|
|
component.setValue("Virtual", "false");
|
|
component.setValue("Default", "false"); // bleeding
|
|
} else {
|
|
component.setValue("Virtual", "true");
|
|
component.setValue("Enabled", "false");
|
|
}
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
component.createOperations();
|
|
|
|
component.addOperation("CreateShortcut", "@TargetDir@/canary-mingw/citra-qt.exe", "@StartMenuDir@/Citra Canary.lnk",
|
|
"workingDirectory=@TargetDir@/canary-mingw");
|
|
}
|