OK here's what I tried: I uninstalled the entire QT sdk and IDE from my computer and re-downloaded SFML in the same location, however now it won't even recognize the SFML setting. It's the same .pro file as before:
TEMPLATE = app
CONFIG += console
CONFIG -= qt
INCLUDEPATH += F:/SFML-2.0-rc/include
INCLUDEPATH += D:/boost_1_51_0
LIBS += -LF:/SFML-2.0-rc/lib
CONFIG(release, debug|release): LIBS += -lsfml-audio -lsfml-graphics -lsfml-network -lsfml-system -lsfml-window
CONFIG(debug, debug|release): LIBS += -lsfml-audio-d -lsfml-graphics-d -lsfml-network-d -lsfml-system-d -lsfml-window-d
SOURCES += main.cpp
However it's telling me "Cannot open include file 'SFML/System.hpp': No such file or directory and all I did was #include <SFML/System.hpp>
Is my .pro file alright? Why is it so difficult to set up SFML on qt creator?