Main file that instantiates the GUI class and run it.
This commit is contained in:
parent
483e6ddafd
commit
ab03a4d976
|
@ -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;
|
||||
|
||||
}
|
Loading…
Reference in New Issue