Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: DR.FEXAR on September 12, 2009, 05:11:27 pm

Title: Help--Huge output file size!
Post by: DR.FEXAR on September 12, 2009, 05:11:27 pm
Hi
I newbie in c::b
I compiling wxwidgets with mingw only as unicode and download c::b svn 5731 and set c::b with wxwidgets
I writing this sample code and debugging

#include <wx/wx.h>

class wxTestApp : public wxApp
{
   virtual bool OnInit()
   {
      wxFrame * frame= new wxFrame(NULL, wxID_ANY, _("wxTest"));
      SetTopWindow(frame);
      frame->Centre();
      frame->Show();
      return true;
   }
};

IMPLEMENT_APP(wxTestApp);


My output file size is 26 MB??? :shock: :shock: :shock:
please help :? :?
Title: Re: Help--Huge output file size!
Post by: Ceniza on September 12, 2009, 05:56:18 pm
My output file size is 26 MB??? :shock: :shock: :shock:
please help :? :?

Please search the forums, as this question has been answered already. Furthermore, it is in no way related to Code::Blocks.

"Large output file size" is the name of the topic with the answer.
Title: Re: Help--Huge output file size!
Post by: DR.FEXAR on September 12, 2009, 06:38:27 pm
THANX Ceniza :lol: :lol: :lol: