summaryrefslogtreecommitdiffstats
path: root/Source/QtDialog/CMakeGUIExec.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/QtDialog/CMakeGUIExec.cxx')
-rw-r--r--Source/QtDialog/CMakeGUIExec.cxx15
1 files changed, 15 insertions, 0 deletions
diff --git a/Source/QtDialog/CMakeGUIExec.cxx b/Source/QtDialog/CMakeGUIExec.cxx
new file mode 100644
index 0000000..1572112
--- /dev/null
+++ b/Source/QtDialog/CMakeGUIExec.cxx
@@ -0,0 +1,15 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+
+#include <QApplication>
+
+class CMakeSetupDialog;
+
+void SetupDefaultQSettings()
+{
+}
+
+int CMakeGUIExec(CMakeSetupDialog* /*window*/)
+{
+ return QApplication::exec();
+}