Hey, I'm at the moment getting familliar with SFML, love it so far, but it seems that there are no tutorial pages for version 2.x so I'm using the samples included in the snapshot. I get the following errors while trying to compile the Ftp.cpp example.
1>main.obj : error LNK2001: unresolved external symbol "public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __thiscall sf::Ftp::Response::GetMessageW(void)const " (?GetMessageW@Response@Ftp@sf@@QBEABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
1>main.obj : error LNK2001: unresolved external symbol "public: class sf::Ftp::Response __thiscall sf::Ftp::DeleteFileW(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?DeleteFileW@Ftp@sf@@QAE?AVResponse@12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
1>main.obj : error LNK2001: unresolved external symbol "public: class sf::Ftp::Response __thiscall sf::Ftp::CreateDirectoryW(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (?CreateDirectoryW@Ftp@sf@@QAE?AVResponse@12@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
I'm sure everything is set up correctly because I'm able to compile any other examples just fine. In fact this is the first error SFML has given me yet.
I hope someone can point out what I'm doing wrong and why I'm such an idiot.