I'm trying to write my first cpp program on Windows+Code Blocks.
I've installed wxwidgets.
I have a label and a button.
When I hit F9, I get the error: error: wx/setup.h: No such file or directory.
The error is highlighted on the file platform.h at line 196 which contains #include "wx/setup.h"
I did a search for the file on my hdd. It is in c:\wxWidgets-2.8.12\wx\msw and some other locations as well.
When I change the line 196 to wx/msw/setup.h this error is gone but there are other errors.
I think I'm missing on something really elementary but also vital. Any thoughts please... Thanks!
EDIT: I don't know if this matters but when I start a new wxwidgets project I get the following screen:
And then I continue clicking yes.

#include <setup.h> int main(){}successfully (using my last suggestion, which worked :p). What other code do you have and what errors does it give? – chris Aug 24 '12 at 8:03