I managed to compile hunspell with Visual Studio and I'm having dificulties making it work. Here's what I have done:
Project Properties -> C/C++ -> General -> Additional Include Directories and added this line: C:\src\hunspell\src\hunspell
Project Properties -> Linker -> General -> Additional Library Directories and added this line: C:\src\hunspell\msvc\Debug_dll\libhunspell
I got this error when I try to run:
cMain.obj : error LNK2019: unresolved external symbol _Hunspell_create referenced in function "public: __thiscall cMain::cMain(class wxString const &,int,class wxPoint const &,class wxSize const &,long)" (??0cMain@@QAE@ABVwxString@@HABVwxPoint@@ABVwxSize@@J@Z)
I also copied the C:\src\hunspell\msvc\Debug_dll\libhunspell\libhunspell.dll to my \Debug folder.
Anyone can help? Thank you.