2001-06-11 02:21:55 +04:00
|
|
|
|
|
|
|
#include "CMakeSetupGUIImplementation.h"
|
|
|
|
#include "FL/Fl.h"
|
|
|
|
#include "FL/fl_ask.H"
|
|
|
|
|
2001-06-15 15:51:55 +04:00
|
|
|
int main(int argc, char * argv[] )
|
2001-06-11 02:21:55 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
fl_message_font(FL_HELVETICA,11);
|
|
|
|
|
|
|
|
CMakeSetupGUIImplementation * gui
|
|
|
|
= new CMakeSetupGUIImplementation;
|
|
|
|
|
2001-06-15 15:51:55 +04:00
|
|
|
gui->SetPathToExecutable( argv[0] );
|
2001-06-11 02:21:55 +04:00
|
|
|
gui->Show();
|
|
|
|
gui->LoadCacheFromDiskToGUI();
|
|
|
|
|
|
|
|
Fl::run();
|
|
|
|
|
|
|
|
delete gui;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|