mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 12:09:48 +00:00
4971799360
Now cpack_ifw_configure_file command used to configure template files of component's scripts. Now for these template files we can use QtIFW predefined variables (like @VAR@) and template variables in Qt/IFW/SDK/Creator templates style (like %VAR%). Now CMake_INSTALL_INFIX advanced variable used to configure CMake installation destination when package as part of QtSDK.
25 lines
661 B
Plaintext
25 lines
661 B
Plaintext
// Component: CMake
|
|
|
|
function Component()
|
|
{
|
|
// Default constructor
|
|
}
|
|
|
|
Component.prototype.createOperations = function()
|
|
{
|
|
// Create shortcut
|
|
if (installer.value("os") === "win") {
|
|
|
|
component.addOperation("CreateShortcut",
|
|
"@TargetDir@/%CMAKE_DOC_DIR%/cmake.org.html",
|
|
"@StartMenuDir@/CMake Web Site.lnk");
|
|
|
|
component.addOperation("CreateShortcut",
|
|
"@TargetDir@/cmake-maintenance.exe",
|
|
"@StartMenuDir@/CMake Maintenance Tool.lnk");
|
|
}
|
|
|
|
// Call default implementation
|
|
component.createOperations();
|
|
}
|