summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/FLTKDialog/FLTKDialog.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cpp b/Source/FLTKDialog/FLTKDialog.cpp
new file mode 100644
index 0000000..e5b91c9
--- /dev/null
+++ b/Source/FLTKDialog/FLTKDialog.cpp
@@ -0,0 +1,22 @@
+
+#include "CMakeSetupGUIImplementation.h"
+#include "FL/FL.h"
+#include "FL/FL_ask.H"
+
+int main()
+{
+
+ fl_message_font(FL_HELVETICA,11);
+
+ CMakeSetupGUIImplementation * gui
+ = new CMakeSetupGUIImplementation;
+
+ gui->Show();
+
+ Fl::run();
+
+ delete gui;
+
+ return 0;
+
+}