Hi All,
I have downloaded latest wxWidgets2.8.0 libraries, CB nightly build 5th jan. i am able to write nice applications in SDL, but when i try this wxWidgets, everything goes out of control. i am unable to get rid of that last page.
Quote from: CodeBlocksa matching debug/release config cant be found. debug/release targets will not be build
may i know how to get rid of this one. and btw i use winXp->C::B(obvious)->wxwidgets wizard (3.3 rev)for 2.8.0 frm
http://forums.next.codeblocks.org/index.php?topic=4768.0help me with this.
regards
It's giving you an warning that the configuration you've selected does not exist in your pc.
From where did you download wx lib? What is it's build configuration?? Static or Dynamic? ANSI or Unicode?? Monolithic or Non-Monolithic??
Which settings you've selected in the wizard??
Please post more details.
i downloaded it frm official website. may i know how to know those configs??
thn i simply did next next next, when it asked for name i gave a name. thn location of include files. tats it.
all the options are checked.
use widgets.dll
widgets is build as monolithic lib
enable unicode
create n use pch
regards
You've downloaded the source of wxWidgets. You have to compile it before you can start using it with wizard.
Wizard checks for some key libraries in the wxWidgets directory that you provide. But if it does not find them it warns you that you cannot build the project as the key libraries are missing. :)
Which compiler are you using?
im having minGW - GCC 345 installed. may i know how to compile it. which is the project folder and what command to fire.
regards
from
http://wiki.codeblocks.org/index.php?title=Installing_Code::Blocks_from_source_on_Windows#Compile_wxWidgets_in_Unicode_mode
set path=c:\mingw\bin;c:\mingw\mingw32\bin
mingw32-make -f makefile.gcc USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1 clean
mingw32-make -f makefile.gcc USE_XRC=1 SHARED=1 MONOLITHIC=1 BUILD=release UNICODE=1
Tim S
Extract the Source to a folder. In my PC, I've extracted it into C: drive in root dir, and after extraction the folder looks like "C:\wxMSW-2.8.0".
Click Start > Run, then type cmd and press enter. Change the directory to C:\wxMSW-2.8.0\build\msw
Now type the following command and press enter. This will create Debug-DLL-Unicode-Monolithic lib of wxWidgets.
mingw32-make -f makefile.gcc BUILD=debug SHARED=1 UNICODE=1 MONOLITHIC=1
To create Release-DLL-Unicode-Monolithic lib of wxWidgets, type the following and press enter.
mingw32-make -f makefile.gcc BUILD=release SHARED=1 UNICODE=1 MONOLITHIC=1
For more details, go through the file INSTALL-MSW.txt in C:\wxMSW-2.8.0 folder. Please remember that the build will take lot of time.
Alternatively, you can download wxPack (http://wxpack.sourceforge.net). wxPack comes with wxWidgets lib compiled with GCC.
Hope this helps. :)
thanks a lot. i simply loved your response. its working fine. thanks a lot.
and lookin for more help from u all.
regards
Nice to hear from you. You are most welcome. :D
Please check the following link to Download latest revision, Revision 4, of wxWidgets Project Wizard..
http://forums.next.codeblocks.org/index.php?topic=4768.0