1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
# the QMAKE_LIBDIR thing is a workaround for a bug in qmake on mingw:
# it searches prl files for library dependencies only QMAKE_LIBDIR and
# ignores "-L" parametes in LIBS.
build_pass:CONFIG(debug,debug|release) {
QMAKE_LIBDIR += ../libnetmd/debug
LIBS += -L../libnetmd/debug
}
build_pass:CONFIG(release,debug|release) {
QMAKE_LIBDIR += ../libnetmd/release
LIBS += -L../libnetmd/release
}
# fallback if libnetmd was not compiled with
# CONFIG += debug_and_release debug_and_release_target
# while I force debug_and_release_target, it is ignored in a
# just-one-kind build without debug_and_release
QMAKE_LIBDIR += ../libnetmd
LIBS += -L../libnetmd
INCLUDEPATH += ../libnetmd
LIBS += -lnetmd
|