diff options
author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-01-11 11:06:00 (GMT) |
---|---|---|
committer | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2017-01-12 16:29:52 (GMT) |
commit | 4971799360b5ec7c99f94810f2fa5cb9f80dcebf (patch) | |
tree | 488e2e136a9101741a30ae90d1e155f5f252bb2a /Source/QtIFW/CMake.Dialogs.QtGUI.qs.in | |
parent | 728820f3ea0faf55ffe1236a44a35e9197fc6291 (diff) | |
download | CMake-4971799360b5ec7c99f94810f2fa5cb9f80dcebf.zip CMake-4971799360b5ec7c99f94810f2fa5cb9f80dcebf.tar.gz CMake-4971799360b5ec7c99f94810f2fa5cb9f80dcebf.tar.bz2 |
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.
Diffstat (limited to 'Source/QtIFW/CMake.Dialogs.QtGUI.qs.in')
-rw-r--r-- | Source/QtIFW/CMake.Dialogs.QtGUI.qs.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/QtIFW/CMake.Dialogs.QtGUI.qs.in b/Source/QtIFW/CMake.Dialogs.QtGUI.qs.in new file mode 100644 index 0000000..71f395a --- /dev/null +++ b/Source/QtIFW/CMake.Dialogs.QtGUI.qs.in @@ -0,0 +1,21 @@ +// Component: CMake.Dialogs.QtGUI + +function Component() +{ + // Default constructor +} + +Component.prototype.createOperations = function() +{ + // Create shortcut + if (installer.value("os") === "win") { + + component.addOperation("CreateShortcut", + "@TargetDir@/%CMAKE_BIN_DIR%/cmake-gui.exe", + "@StartMenuDir@/CMake (cmake-gui).lnk"); + + } + + // Call default implementation + component.createOperations(); +} |