Reputation: 6180
I've been swamped with wxWidgets for weeks now. However, I need some help:
When dynamically linking a Unicode, Release, Non-monolithic version of wxWidgets 3.0.0, how do I link the following libraries?
Compiler: TDM-GCC-64
IDE: Code::Blocks 13.12
https://i.sstatic.net/kXHRH.png
Upvotes: 0
Views: 849
Reputation: 22678
If you're using DLLs, make sure you define WXUSINGDLL
in your project options (i.e. the compiler is ran with -D WXUSINGDLL
flag).
Upvotes: 1