Problems with sfml

Hi All,
I am a new programmer learning how to program in C++. Right now I have a simple program.

#include <SFML/graphics.hpp>
#include <iostream>

int main()
{

} I am getting two errors: Cannot open source file sfml/graphics.hpp and cannot open include.
I am using a book Beginning C++ Game Programming 2nd edition. I followed what it says in the book to setup using SFML.
There is something wrong if I can't even get the #include <sfml/graphics.hpp> to work.
Help
It's Graphics.hpp (with a capital G).
I think OP is on Windows, so case is not relevant.

Did you set up the additional include directories properly?
I was facing similar problem. The reason could be 1) you may not be providing correct "include" directory to the compiler or the file may not actually exist 2) just look into your compiler/IDE documentation and "Add additional search/include directory for compiler" the directory containing SFML.

I followed all of the instructions in the book. Then I went to the sfml site and followed the instructions there I did all of the setting in timber properties.
I tried both G and g neither worked. I also copied graphics.hpp from its original folder to the top level sfml folder. It did not make any difference.
Topic archived. No new replies allowed.