On Windows XP i am trying to compile wxSQLite3
-----------------------------------------------------------
From
http://wxcode.sourceforge.net/components/wxsqlite3/ i download wxsqlite3-3.0.3.zip and extract to c:\
From
http://www.codeblocks.org/ instal C::B from codeblocks-12.11mingw-setup.exe
From
http://www.wxwidgets.org/ download and extract to c:\ the wxWidgets-2.9.4.zip
Adding to Path the C:\Program Files\CodeBlocks\MinGW\bin
making bat file.
------------------
cd C:\wxWidgets-2.9.4\build\msw\
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=release clean
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=debug clean
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 MONOLITHIC=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=1 UNICODE=1 MONOLITHIC=1 BUILD=debug
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 MONOLITHIC=1 BUILD=release
mingw32-make -f makefile.gcc SHARED=0 UNICODE=1 MONOLITHIC=1 BUILD=debug
-----------------
and run it i have the libraries.
All are OK until now. wxWidgets framework works fine.
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?