You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
749 B
25 lines
749 B
function Component()
|
|
{
|
|
// default constructor
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
// call default implementation to actually install applications!
|
|
component.createOperations();
|
|
|
|
// Create shortcut
|
|
if (installer.value("os") === "win") {
|
|
|
|
@_CPACK_IFW_SHORTCUT_OPTIONAL@
|
|
|
|
component.addOperation("CreateShortcut",
|
|
installer.value("TargetDir") + "/cmake.org.html",
|
|
installer.value("StartMenuDir") + "/CMake Web Site.lnk");
|
|
|
|
component.addOperation("CreateShortcut",
|
|
installer.value("TargetDir") + "/uninstall.exe",
|
|
installer.value("StartMenuDir") + "/Uninstall.lnk");
|
|
}
|
|
}
|