Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Linking change from v1.6?  (Read 1342 times)

0 Members and 1 Guest are viewing this topic.

Weeve

  • Jr. Member
  • **
  • Posts: 87
  • C++ Programmer (Intermediate), 3D Artist (Skilled)
    • View Profile
    • Email
Linking change from v1.6?
« 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 :-)
Long live rapid project development! -- Kestrel3D Game-Engine nearing completion

Weeve

  • Jr. Member
  • **
  • Posts: 87
  • C++ Programmer (Intermediate), 3D Artist (Skilled)
    • View Profile
    • Email
Re: Linking change from v1.6?
« Reply #1 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
Long live rapid project development! -- Kestrel3D Game-Engine nearing completion

 

anything