I m using Qt when I m compile the project in Qt It runs, but when I run from the explorer I get runtime error.
#include <SFML/Graphics.hpp>
int main()
{
sf::Window window(sf::VideoMode(800,600),"jkllmkjl");
while(window.isOpen())
{
sf::Event e;
while(window.pollEvent(e)){
if(e.type==sf::Event::Closed)
window.close();
}
window.display();
}
return 0;
}
I already paste dlls into .exe directory. Can someone help me ?