I use fltk lib in my project. My goal is to compile my project with all libraries dependencies in it (now problem is only with FLTK), so I don't need to install vcredist libraries on each machine, where I want to use it. So I read that for this I need to compile my project with parameters c/c++ --> code generation --> Runtime library --> Multi-threaded.
Now I'm using Multi-threaded DLL and everything works fine, but when I change it to MT I get error list (they got all similar code LNK2001):
Code LNK2001 Description unresolved external symbol __imp___wgetcwd file ConsoleApplication2\fltk.lib(fl_utf8.obj)
What I should do to compile my project with MT setup?