I am on Ubuntu 9.10, I did install codelite from the page 2.0.3365 and I installed wxWidgets-2.8.10, I created my very first workspace and new wxwdigets project
it auto generated
Code: Select all
#include <wx/init.h> //wxInitializer
#include <wx/string.h> //wxString
int main(int argc, char **argv)
{
//Initialize the wxWidgets library
wxInitializer initializer;
//Print the classic hello world
wxString msg(wxT("Hello World"));
wxPrintf(wxT("%s\n"), msg.GetData());
return 0;
}
Can I ask what the hell am I doing wrong