kushdilip
kushdilip

Reputation: 7906

Adding jpeg library to C++ Qt Creator Project in ubuntu?

I want to create a wrapper class for existing jpeg library. I have created the project in Qt creator ? Can anyone tell me how to link libjpeg8 in Qt Creator?

Upvotes: 1

Views: 1146

Answers (1)

ScarCode
ScarCode

Reputation: 3094

Just add

LIBS += -L/usr/lib -ljpeg8

in your .pro file

Upvotes: 1

Related Questions