mirror of
https://github.com/reactos/CMake.git
synced 2025-01-07 11:40:23 +00:00
938bbc4352
Added components: - cmake - ctest - cpack - cmake-gui - ccmake - data - sphinx-html - sphinx-singlehtml - sphinx-qthelp Other now Unspecified.
23 lines
720 B
Plaintext
23 lines
720 B
Plaintext
function Component()
|
|
{
|
|
// Default constructor
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
// Create shortcut
|
|
if (installer.value("os") === "win") {
|
|
|
|
component.addOperation("CreateShortcut",
|
|
installer.value("TargetDir") + "/@CMAKE_DOC_DIR@/cmake.org.html",
|
|
installer.value("StartMenuDir") + "/CMake Web Site.lnk");
|
|
|
|
component.addOperation("CreateShortcut",
|
|
installer.value("TargetDir") + "/cmake-maintenance.exe",
|
|
installer.value("StartMenuDir") + "/CMake Maintenance Tool.lnk");
|
|
}
|
|
|
|
// Call default implementation
|
|
component.createOperations();
|
|
}
|