mirror of
https://github.com/reactos/CMake.git
synced 2025-01-05 18:38:46 +00:00
938bbc4352
Added components: - cmake - ctest - cpack - cmake-gui - ccmake - data - sphinx-html - sphinx-singlehtml - sphinx-qthelp Other now Unspecified.
22 lines
538 B
Plaintext
22 lines
538 B
Plaintext
// 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();
|
|
}
|