SOLUTION:
Firstly, thanks to the patient community who helped me (eventually) figure this out. The answer was in the tutorials and FAQs but it didn't click for me in the way it was written. So just in case anyone finds this thread in a similar situation, the Additional Dependencies needs to include ALL the window libs, not just the SFML libs,opengl32,winmmn.lib and gdi32.lib. As such, mine now works with them as:
Debug
sfml-window-s-d.lib;sfml-graphics-s-d.lib;sfml-audio-s-d.lib;sfml-network-s-d.lib;sfml-system-s-d.lib;sfml-main-d.lib;opengl32.lib;winmm.lib;gdi32.lib;freetype.lib;jpeg.lib;openal32.lib;flac.lib;vorbisenc.lib;vorbisfile.lib;vorbis.lib;ogg.lib;ws2_32.lib;
Release
sfml-window-s.lib;sfml-graphics-s.lib;sfml-audio-s.lib;sfml-network-s.lib;sfml-system-s.lib;sfml-main.lib;opengl32.lib;winmm.lib;gdi32.lib;freetype.lib;jpeg.lib;openal32.lib;flac.lib;vorbisenc.lib;vorbisfile.lib;vorbis.lib;ogg.lib;ws2_32.lib;
ORIGINAL POST:
I am having problems with static linking in SFML and Visual Studio. I'm having this linking problem in my game so I thought I would test out why by going back to basics by following the tutorial below:
http://www.sfml-dev.org/tutorials/2.2/start-vc.phpUsing dynamic linking (and copying the .dlls from the sfml/bin folder to the project folder) it works as expected and I get that lime green circle as per the tutorial.
However if I then add the -s suffix as below:
Debug:
sfml-graphics-s-d.lib;sfml-window-s-d.lib;sfml-system-s-d.lib
Release:
sfml-graphics-s.lib;sfml-window-s.lib;sfml-system-s.lib
and add the SFML_STATIC macro to c/c++ preprocessor defintion I get a lot of "unresolved external symbol" errors referring to the sfml-graphics-s.lib, with the same error if its build in debug or release mode.
Can anyone advise as I can't see what I have missed from the tutorial and it works fine dynamically.
EDITED TO ADD ERRORS:
Error LNK2001 unresolved external symbol __imp__glReadPixels@28 ConsoleApplication2 C:\Users\NAME\Documents\Visual Studio 2015\Projects\ConsoleApplication2\ConsoleApplication2\sfml-graphics-s.lib(RenderWindow.cpp.obj) 1 1
Error LNK2001 unresolved external symbol __imp__glBlendFunc@8 ConsoleApplication2 C:\Users\NAME\Documents\Visual Studio 2015\Projects\ConsoleApplication2\ConsoleApplication2\sfml-graphics-s.lib(RenderTarget.cpp.obj) 1 1
etc. There are about 65 of these errors, all the same error type of LNK2001 for various functions in the sfml-graphics.lib