You want to link dynamically use no suffix for release builds and the -d suffix for the debug libs. Also do not define SFML_STATIC, that's what most likely caused the issue in the first place.
If you want to link statically you need to use the -s suffix for release libs and -s-d for debug. And for static you need to define SFML_STATIC.
Read the official tutorial carefully, everything is explained there.