Hey all!
It's been a while since i've been programming, but i decided to pick up SFML again. At least, that was my intention.
I already had some problems installing SFML in the past, and now I'm having trouble again..
I downloaded the full Qt IDE (5.2 beta -> Mavericks compatible), and I downloaded the most recent version of SFML for Mac (the Clang version, since I use Clang with Qt to compile). I copied the content of "include" to /usr/local/include, and the content of "lib" to /usr/local/lib. And I tried to link the libs and the includepath this way:
LIBS += -L"/usr/local/lib" -lsfml-window -lsfml-graphics -lsfml-system
INCLUDEPATH = "/usr/local/include/SFML"
So, this is how my .pro file looks like. But when I try to build a simple black window, I get the following error:
/Users/Jonas/Desktop/SFML_test/main.cpp:1: error: 'SFML/Graphics.hpp' file not found
#include <SFML/Graphics.hpp>
^
The strange thing is, in my opininion, that the auto-fill-in works fine using SFML specific functions...
I'd appreciate any help!
Jonas