diff options
author | Brad King <brad.king@kitware.com> | 2015-07-08 13:19:12 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-07-08 13:19:12 (GMT) |
commit | 66e0681ea0293aac6f3547224cef85593cbe4595 (patch) | |
tree | 9d209bd5f14f0037cd66d0aee2ab9180ec12e9ab /Source/QtIFW/installscript.qs.in | |
parent | 8c1460653e8f21b9e09324617836aeec18f350b7 (diff) | |
parent | 9ce7a663d6d50c6f2d7a3fbc76ed10c5af6a91a5 (diff) | |
download | CMake-66e0681ea0293aac6f3547224cef85593cbe4595.zip CMake-66e0681ea0293aac6f3547224cef85593cbe4595.tar.gz CMake-66e0681ea0293aac6f3547224cef85593cbe4595.tar.bz2 |
Merge topic 'cmake-install-components'
9ce7a663 Utilities/Sphinx: Add CMake_OPTIONAL_COMPONENT macro
d7725a17 CMake: Add cmakexbuild component as REQUIRED to Tools group for IFW installer
ecca2685 CMake: optional show LGPLv2.1 license when install cmake-gui component
c14f20f7 CMake: Fix Web Site shortcut in IFW installer for Windows
c823f04e CMake: New option CMake_INSTALL_COMPONENTS
7383e4d7 CMake: Install COMPONENTs (sphinx-man)
2531b909 CMake: Install COMPONENTs (QtDialog)
938bbc43 CMake: Install COMPONENTs
Diffstat (limited to 'Source/QtIFW/installscript.qs.in')
-rw-r--r-- | Source/QtIFW/installscript.qs.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/QtIFW/installscript.qs.in b/Source/QtIFW/installscript.qs.in index 570dba1..3411e34 100644 --- a/Source/QtIFW/installscript.qs.in +++ b/Source/QtIFW/installscript.qs.in @@ -5,20 +5,20 @@ function Component() Component.prototype.createOperations = function() { - // call default implementation to actually install applications! - component.createOperations(); - // Create shortcut if (installer.value("os") === "win") { @_CPACK_IFW_SHORTCUT_OPTIONAL@ component.addOperation("CreateShortcut", - installer.value("TargetDir") + "/cmake.org.html", + 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(); } |