summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/FLTKDialog.cpp
blob: 2d3666a02d215bef4d281cc2497d395fc5e23f3d (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;
  
}