I'm trying to set up a static library for personal use, and I'd like to use SFML functionality in it.
I think I've done everything needed for it to work:
Configuration Properties > C/C++ > General > Additional Include Directories
Configuration Properties > Librarian > General > Additional Library Directories
Configuration Properties > Librarian > Genera > Additional Dependencies
Configuration Properties > C/C++ > Preprocessor > Preprocessor Definitions (for static linking)
IntelliSense does recognize SFML, yet the project throws many errors on build. For example
cannot open source file "algorithm". this specific error comes from Rect.hpp, part of SFML itself. On top of that there are many other similar errors related to C++ STL, many of them come from String.hpp. What did I do wrong?
Any help is appreciated