First step executed.
I decided to use Mingw-get-inst to install the compiler.
Then I unpacked the sources for wxWidgets 2.8.12 in the home folder of mingw which for me is:
C:\MinGW\msys\1.0\home\francesco
Then I started the shell (bash) which is installed by mingw and from this I have compiled wxWidgets with the following commands:
mingw32-make.exe-f makefile.gcc clean
mingw32-make.exe-f makefile.gcc USE_XRC = 1 SHARED = 1 MONOLITHIC = 1 BUILD = release UNICODE = 0
mingw32-make.exe-f makefile.gcc USE_XRC = 1 SHARED = 1 MONOLITHIC = 1 BUILD = debug UNICODE = 0
At this point, I copied the WX folder on the root of my hard drive ( C: ).
I installed code :: blocks without Mingw (which I previously installed) and I created a project Wx but at this point I get the following errors:
1
A matching Debug configuration can not be found in the wxWidgets directory you specified.
This Menas That Debug target of your project will not build.
2
A matching Release configuration can not be found in the wxWidgets directory you specified.
This Menas That Release target of your project will not build.
How do I fix this?
I forgot something, I have to add the path of the Wx folder (on the root of C:) to the system path ?