CMake/Source/QtIFW/CMake.Documentation.SphinxHTML.qs.in
Konstantin Podsvirov 4971799360 QtIFW: Improved packaging
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.
2017-01-12 19:29:52 +03:00

22 lines
498 B
Plaintext

// Component: CMake.Documentation.SphinxHTML
function Component()
{
// Default constructor
}
Component.prototype.createOperations = function()
{
// Create shortcut
if (installer.value("os") === "win") {
component.addOperation("CreateShortcut",
"@TargetDir@/%CMAKE_DOC_DIR%/html/index.html",
"@StartMenuDir@/CMake Documentation.lnk");
}
// Call default implementation
component.createOperations();
}