I tried to setup wxWidgets on Windows with MSYS and MinGW. I used the MinGW Shell (MSYS) to build and install the library.
My procedure:
1) Create a new directory ('build-debug')
2) Run the configure script with a few arguments
3) Run make
4) Install the compiled library (make install)
--> no Error! Everything worked fine!
But: After that I tried to compile a little example. (g++ test.cpp -owxTest) But the compiler told me that 'wx/wx.h' can't be found. I'm a little bit confused because I believed that the compiler (+ msys) knows the include dir after my 4th step. Probably I have to modify the parameters of my build process and I hope you can tell my what I've done wrong and how to fix it.
I don't use any IDE - I'm using Programmer's Notepad.
I tried to compile my example code with msys and the g++ compiler. I'm not sure but I think msys emulates a UNIX-like environment and g++ looks in the UNIX specific include directories. (when I call g++ in msys) So I haven't updated any variables.