[ad_1]
I’m a programmer switching from python to C++, and I’ve had some trouble with getting SFML to work. All the tutorials I can find aren’t really all that helpful, so I thought I’d ask here.
My current situation is that I have downloaded “GCC 7.3.0 MinGW (SEH) – 64-bit”. My C++ works fine with the built in libraries, but it is unable to find the graphics library from SFML. My #include is:
#include <SFML/Graphics.hpp>
and in my directory in c_cpp_properties.json file is:
"C:\\Users\\Admin\\Documents\\libraries\\SFML-2.5.1\\include"
The error it spits out is:
new.cpp:1:10: fatal error: SFML/Graphics.hpp: No such file or directory
All the tutorials don’t seem to have this problem, and other people with the same problem seems to just have spelling errors, but I can’t spot where I’ve done something wrong. I have the MinGW from sourceforge with the title “MinGW-w64 – for 32 and 64 bit”, and I am on a 64 bit windows system writing in VSCode. Tell me if there is any other information that needs specification. If you have any ideas for a solution, I would be greatly appreciative:)
[ad_2]