Revision 8c8e53d06011ef476780d10601adac78baf8aead authored by Matt McCormick on 12 January 2016, 17:25:15 UTC, committed by Matt McCormick on 12 January 2016, 17:25:15 UTC
Also remove CTK integration reference to avoid confusion.
1 parent d50cbbb
Raw File
CMake.Documentation.SphinxHTML.qs.in
// 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();
}
back to top