hi,
i have only one line from sfml in my code:
return (sf::TcpSocket().connect(address, port) == sf::Socket::Done);
and i get:
1>MyForm.obj : error LNK2020: unresolved token (0A000674) "public: static class sf::Time const sf::Time::Zero" (?Zero@Time@sf@@2V12@B)
1>MyForm.obj : error LNK2001: unresolved external symbol "public: static class sf::Time const sf::Time::Zero" (?Zero@Time@sf@@2V12@B)
i'm using visual studio 14 and i added in:
project properties -> debug-> linker-> input:
ws2_32.lib
sfml-system-d.lib
sfml-window-d.lib
sfml-network-d.lib
sfml-audio-d.lib
sfml-graphics-d.lib
what am i missing?
thanks for the help...