summaryrefslogtreecommitdiff
path: root/Source/QtIFW/CMake.Dialogs.QtGUI.qs.in
diff options
context:
space:
mode:
Diffstat (limited to 'Source/QtIFW/CMake.Dialogs.QtGUI.qs.in')
-rw-r--r--Source/QtIFW/CMake.Dialogs.QtGUI.qs.in21
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 0000000000..71f395ac0b
--- /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();
+}