Making libs with mingw32-make and makefile.gcc in windows XP, then with wxsqlite3 extracting, premake4 using for making C::B projects, then open and run, C::B says
C:\wxWidgets-2.9.4\include\wx\platform.h|154|fatal error: wx/setup.h: No such file or directory
In search dir's properties it lookin for wx/setup.h in
C:\wxWidgets-2.9.4\lib\vc_dll\mswud
C:\wxWidgets-2.9.4\include
But there is no such dirs.
Bellow building way.
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
What i must do?
I have no errors compiling wxWidgets.
When with premake4 making C::B project at wxSQLite3 with code ...
cd C:\wxsqlite3-3.0.3\build29
mingw32-make -f makefile.gcc
cd C:\wxsqlite3-3.0.3
premake4 --cc=gcc --os=windows --platform=x32 --version=2.9 --file=premake4.lua clean
premake4 --cc=gcc --os=windows --platform=x32 --version=2.9 --file=premake4.lua codeblocks
cd C:\wxsqlite3-3.0.3\premake
premake4 --cc=gcc --os=windows --platform=x32 --version=2.9 --file=wxwidgets.lua clean
premake4 --cc=gcc --os=windows --platform=x32 --version=2.9 --file=wxwidgets.lua codeblocks
and then opening C::B projects at
C:\wxsqlite3-3.0.3\build\wxsqlite3lib\wxsqlite3lib.cbp
C:\wxsqlite3-3.0.3\build\wxsqlite3dll\wxsqlite3dll.cbp
C:\wxsqlite3-3.0.3\build\minimal\minimal.cbp
all projects demand wx/setup.h file on bellow dirs
$(WXWIN)\lib\vc_dll\mswud
$(WXWIN)\include
What must do?