Я захотел сделать графическое приложение на SFML (2.5.1), но при компиляции кода постоянно идёт одна и та же ошибка.
Среда разработки: Eclipse Cpp
15:49:16 **** Incremental Build of configuration Debug for project vanilla ****
Info: Internal Builder is used for build
g++ -o vanilla.exe "src\\log.o" "src\\vanilla.o" "-lC:\\Users\\vsach\\Documents\\cpp-libs\\SFML-2.5.1\\lib"
c:/mingw/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot find -lC:\Users\vsach\Documents\cpp-libs\SFML-2.5.1\lib
collect2.exe: error: ld returned 1 exit status
Сам код:
#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. Вопрос был изменён