If your static libraries are not kept in the same directory as your dynamic libraries, modify your project file LIBS variable with -L and -l
win32 {
LIBS += -LC:\path\to\lib\dir -llibname
} else {
LIBS += -L/path/to/lib/dir -llibname
}
If your static libraries are not kept in the same directory as your dynamic libraries, modify your project file LIBS variable with -L and -l
win32 {
LIBS += -LC:\path\to\lib\dir -llibname
} else {
LIBS += -L/path/to/lib/dir -llibname
}
Bookmarks