WxWidgets library settings

enter image description here

How to find out the settings of the installed wxWidgets library?

Or how to solve a problem, for example, shown in the image?

+3
source share
1 answer

Library debug builds will have the suffix "d" in their names in MSW, for example. wxmsw30ud_core.libThis is the debug version of the main library, and the wxmsw30u_core.librelease version (note the missing "d").

To solve your problem, you must create or load debug library assemblies. How to do this exactly depends on how / where you got the release builds.

+2
source

All Articles