Opening C::B and insert C:\wxsqlite3-3.0.3\build\wxsqlite3_vc6.dsw and try to compile the MSVC workspace i have the problem.
C:\wxWidgets-2.9.4\include\wx\platform.h|154|fatal error: wx/setup.h: No such file or directory|
The same when try to compile the C:\wxWidgets-2.9.4\build\msw\wx.dsw
Any idea to solve problem?
Why do you use dsw files? The dsw project files were used for VC6 compiler, but you are currently use MinGW/GCC compiler.
There are sub-folder named "build29" under wxSqlite3, then you should use the makefile.gcc to build this library.
Note: You can manually edit the makefile.gcc
E.g.
# The directory where wxWidgets library is installed
WX_DIR ?= put your wx2.9.x path here
You may need other adjusts, but I can't remember more.