1
General / Problem with QT Creator and SFML
« on: April 23, 2011, 07:15:15 pm »
Works now Thank you.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
ATI graphics card?
INCLUDEPATH += E:/QtSDK/Desktop/Qt/4.7.3/mingw/include
LIBS += E:/QtSDK/Desktop/Qt/4.7.3/mingw/lib/libsfml-system.a \
E:/QtSDK/Desktop/Qt/4.7.3/mingw/lib/libsfml-window.a \
E:/QtSDK/Desktop/Qt/4.7.3/mingw/lib/libsfml-graphics.a \
SOURCES += \
main.cpp \
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>
int main()
{
sf::Window App(sf::VideoMode(800, 600, 32), "SFML Window");
// Start main loop
bool Running = true;
while (Running)
{
App.Display();
}
return EXIT_SUCCESS;
}