mirror of
https://github.com/yuzu-emu/citra-qt-installer.git
synced 2024-11-21 22:35:39 +01:00
19 lines
612 B
Plaintext
19 lines
612 B
Plaintext
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");
|
|
}
|