From: kill k. <ic...@gm...> - 2006-08-25 15:59:48
|
kill koll <icmp128@...> writes: > > Hi. > > app.obj : error LNK2019: unresolved external symbol > "public: void __thiscall > wxStringData::Free(void)" (?Free <at> wxStringData <at> <at> QAEXXZ) > referenced in function > "public: void __thiscall wxStringData::Unlock(void)" > (?Unlock <at> wxStringData <at> <at> QAEXXZ) > > C:\dev\msvc\app.exe : fatal error LNK1120: 1 unresolved externals > > Can anyone help with this. I've set up everything like in > > http://www.wxwidgets.org/wiki/index.php/Compiling_WxWidgets#Your_Application_2 > google search doesnt seem to help either. > > thanks. ok, changed project->properties->c/c++->code generation->Runtime library to multi-threaded debug DLL(/MDd) was before /MTd but this /MDd generates dynamically linked .exe, I still want staticaly linked one... |