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.
22 lines
538 B
22 lines
538 B
9 years ago
|
// Component: CMake.Documentation.SphinxHTML
|
||
|
|
||
|
function Component()
|
||
|
{
|
||
|
// Default constructor
|
||
|
}
|
||
|
|
||
|
Component.prototype.createOperations = function()
|
||
|
{
|
||
|
// Create shortcut
|
||
|
if (installer.value("os") === "win") {
|
||
|
|
||
|
component.addOperation("CreateShortcut",
|
||
|
installer.value("TargetDir") + "/@CMAKE_DOC_DIR@/html/index.html",
|
||
|
installer.value("StartMenuDir") + "/CMake Documentation.lnk");
|
||
|
|
||
|
}
|
||
|
|
||
|
// Call default implementation
|
||
|
component.createOperations();
|
||
|
}
|