I am using wxwidget on my Mac OSX and just cant make my app access my resources directoy within my app bundle.
I have a file name image.bmp in my resources folder and accessing it through :
m_bitmap1 = new wxStaticBitmap( this, wxID_ANY, wxBitmap( wxT("Resources/image.bmp"), wxBITMAP_TYPE_ANY ), wxDefaultPosition, wxDefaultSize, 0 );
my app yell : "File not found error" on that file. I also tried ./Resource, or just image.bmp but nothing seems to work.
Looking into the app file I can see the file in there. but for some strange reason it seems to ignore it.
Any idea ?