SFML community forums

Help => General => Topic started by: Weeve on September 13, 2013, 01:45:16 am

Title: Linking change from v1.6?
Post by: Weeve on September 13, 2013, 01:45:16 am
Haven't messed with SFML since v1.6, and in my old project, I finally got all the 1.6 Upper-camel & event name changes switched over to 2.0, and now its not finding the libs to link to (likely a name change?)

I'm useing Qt's .pro, current code snippet:
LIBS += -l sfml-system -l sfml-window -l sfml-graphics

Errors, basically library not found:
error: sfml-system: No such file or directory
error: sfml-window: No such file or directory
error: sfml-graphics: No such file or directory

Haven't messed with this section of code in a long time, and still learning C++, ty for the help :-)
Title: Re: Linking change from v1.6?
Post by: Weeve on September 13, 2013, 02:24:27 am
messing around with it, was changed to:
LIBS += -lsfml-system -lsfml-window -lsfml-graphics

sorry for the spam post X-D