debug {
LIBS += -L./libfolder -lmydebuglib.lib
}
release {
LIBS += -L./libfolder -lmyreleaselib.lib
}
Note that the first brace must appear on the same line as the configuration name - the following will cause qmake to error:
debug
{
LIBS += ...
}
I posted a question about this on Stack Overflow as well as asking on the Qt Creator mailing list.
No comments:
Post a Comment