使用SFML库时,我遇到此错误消息:
这是什么意思,我该如何解决?
代码:
#include <SFML/Graphics.hpp>
int main()
{
sf::RenderWindow window(sf::VideoMode(200, 200), "SFML works!");
sf::CircleShape shape(100.f);
shape.setFillColor(sf::Color::Green);
while (window.isOpen())
{
sf::Event event;
while (window.pollEvent(event))
{
if (event.type == sf::Event::Closed)
window.close();
}
window.clear();
window.draw(shape);
window.display();
}
return 0;
}
P.S。我按照此视频安装了SFML库:https://www.youtube.com/watch?v=fcZFaiGFIMA
答案 0 :(得分:0)
我认为您没有正确链接dll库,或者它已链接但不在与项目相同的文件夹中