2014-07-23 11:01:59 +04:00
|
|
|
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",
|
2015-04-29 12:54:20 +03:00
|
|
|
installer.value("TargetDir") + "/cmake-maintenance.exe",
|
|
|
|
installer.value("StartMenuDir") + "/CMake Maintenance Tool.lnk");
|
2014-07-23 11:01:59 +04:00
|
|
|
}
|
|
|
|
}
|