News:

Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!

Main Menu

wxWidgets2.8.0

Started by ageempires, January 11, 2007, 03:48:41 PM

Previous topic - Next topic

ageempires

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.0
help me with this.

regards

Biplab

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.
Be a part of the solution, not a part of the problem.

ageempires

#2
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

Biplab

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?
Be a part of the solution, not a part of the problem.

ageempires

im having minGW - GCC 345 installed. may i know how to compile it. which is the project folder and what command to fire.

regards

stahta01

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
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

Biplab

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.  :)
Be a part of the solution, not a part of the problem.

ageempires

thanks a lot. i simply loved your response. its working fine. thanks a lot.
and lookin for more help from u all.

regards

Biplab

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
Be a part of the solution, not a part of the problem.