where is the "wxmsw28d_core.lib" Topic is solved

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
Post Reply
Glave
In need of some credit
In need of some credit
Posts: 4
Joined: Sun Feb 08, 2009 10:34 am
Location: China

where is the "wxmsw28d_core.lib"

Post by Glave »

I am a beginner of wxWidgets.I have built all the dlls and libs ,but when I built the example, the compiler said can not find the "wxmsw28d_core.lib".
Then I search the "wxWidgets-2.8.9" folder,"wxmsw28d_core.lib" can not be found,also is the "wxmsw28_core.lib","wxmsw28ud_core.lib".

where is the"wxmsw28d_core.lib" ? Thanks!
User avatar
Disch
Experienced Solver
Experienced Solver
Posts: 99
Joined: Wed Oct 17, 2007 2:01 am

Post by Disch »

Assuming you're using MSVS, wxmsw28d_core.lib should be in 'wxWidgets-2.8.9/lib/vc_lib/' after you build the debug version of wxWidgets.

All the libs you mentioned are different builds of the wx core library. They should all be in the same directory assuming you built all of them:

wxmsw28_core.lib - Release
wxmsw28d_core.lib - Debug
wxmsw28ud_core.lib - Unicode Debug

If you're missing one or more of those libs, make sure you built the right configuration of wx.
Glave
In need of some credit
In need of some credit
Posts: 4
Joined: Sun Feb 08, 2009 10:34 am
Location: China

Post by Glave »

THANKS!
Glave
In need of some credit
In need of some credit
Posts: 4
Joined: Sun Feb 08, 2009 10:34 am
Location: China

Post by Glave »

The exact error is that I set "MONOLITHIC=1" when I build the wxWidgets.It's OK now.^_^
Post Reply