在Code :: Blocks中使用SFML

时间:2018-08-11 12:17:41

标签: c++ codeblocks linker-errors sfml

我正在尝试在Code :: Blocks中使用SFML。我已按照https://www.sfml-dev.org/tutorials/2.5/start-cb.php上的指南进行操作,但无效。请帮忙!

在项目的构建选项中,我指定了所有内容:

enter image description here

enter image description here

enter image description here

enter image description here

错误:

enter image description here

这是简单的代码:

int main(){

#include <SFML/System.hpp>
#include <SFML/Window.hpp>
#include <SFML/Graphics.hpp>

sf::RenderWindow window(sf::VideoMode(800, 600), "Epic RPG");

return 0;
}

错误似乎表明链接出错-我不知道如何

2 个答案:

答案 0 :(得分:0)

我使用了CB自己的SFML项目类型,现在可以使用

答案 1 :(得分:0)

我看到您正在使用静态库,如果要使用它们,则还需要参考SFML源代码。相反,请尝试放置其他相同的库,但不要在它们上加上“ -s”。