I've decided to start programming with graphics and I've heard SFML is a pretty good library for it. However, I'm having a problem. The code that I copied from the SFML website's tutorial is giving me an an error:
C:\Users\Stewart\Desktop\C++ Tasks\Projects\SFML\main.o:main.cpp|| undefined reference to `sf::Clock::Clock()'|
C:\Users\Stewart\Desktop\C++ Tasks\Projects\SFML\main.o:main.cpp|| undefined reference to `sf::Clock::GetElapsedTime() const'|
C:\Users\Stewart\Desktop\C++ Tasks\Projects\SFML\main.o:main.cpp|| undefined reference to `sf::Sleep(float)'|
C:\Users\Stewart\Desktop\C++ Tasks\Projects\SFML\main.o:main.cpp|| undefined reference to `sf::Clock::GetElapsedTime() const'|
||=== Build finished: 4 errors, 0 warnings ===|
I'm guessing it's got sometihng to with Code::Blocks not being able to find the SFML library. I have installed it correctly according to the tutorial though.