Hi,
I'm using the SFML 2.2.0 on Ubuntu 16.10.
I'm compiling with a Makefile with the following SFML flags :
LDLIBS = -lsfml-graphics -lsfml-window -lsfml-system -lGL
But when I'm compiling, I have the following error:
Undefined reference to "sf::CircleShape::CircleShape(float, unsigned int)"
I checked CircleShape.hpp and the prototype exist.
CircleShape.hpp
41:class SFML_GRAPHICS_API CircleShape : public Shape
52: explicit CircleShape(float radius = 0, unsigned int pointCount = 30);
I know that my program is suppose to work, because I didn't have any problem some times ago, but since I reinstall Ubuntu and the SFML I have this problem....
Thanks in advance !