Hi, I added SFML 2.6 to my project, I followed the documentations
https://www.sfml-dev.org/tutorials/2.6/start-vc.php but I still get 17 errors saying "unresolved external symbol" i've tried everything but nothing seems to be working. Here is what I added to Debug and Release
Debug:
sfml-graphics-s-d.lib
sfml-audio-s-d.lib
sfml-window-s-d.lib
sfml-system-s-d.lib
opengl32.lib
winmm.lib
gdi32.lib
ws2_32.lib
Release:
sfml-graphics-s.lib
sfml-audio-s.lib
sfml-window-s.lib
sfml-system-s.lib
opengl32.lib
winmm.lib
gdi32.lib
ws2_32.lib
I followed step by step the tutorial, even tried the part where they talk about SFML_STATIC, but it didn't change anything, here is the example of error I get:
Error LNK2019 unresolved external symbol "public: __thiscall sf::String::String(char const *,class std::locale const &)" (??0String@sf@@QAE@PBDABVlocale@std@@@Z) referenced in function _main GameEngine E:\Programmation\Apps\GameEngine\GameEngine\main.obj 1
Error LNK2019 unresolved external symbol "public: __thiscall sf::VideoMode::VideoMode(unsigned int,unsigned int,unsigned int)" (??0VideoMode@sf@@QAE@III@Z) referenced in function _main GameEngine E:\Programmation\Apps\GameEngine\GameEngine\main.obj 1
Error LNK2019 unresolved external symbol "public: __thiscall sf::Color::Color(unsigned char,unsigned char,unsigned char,unsigned char)" (??0Color@sf@@QAE@EEEE@Z) referenced in function _main GameEngine E:\Programmation\Apps\GameEngine\GameEngine\main.obj 1
... and 14 more for Video::Video, Window::Window etc... Can you help me ?