summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/FLTKDialog.cxx
blob: 5933ef5b2414302fa66390ded9002e9c574039b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#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();
  gui->LoadCacheFromDiskToGUI();

  Fl::run();

  delete gui;
  
  return 0;
  
}