From f2639b9ea5f44dfac9815d84d1ce36f4a5a65450 Mon Sep 17 00:00:00 2001 From: eelke Date: Sat, 17 Nov 2018 19:33:47 +0100 Subject: [PATCH] Link with new builds of botan We now have seperate debug and release builds. --- pglab/pglab.pro | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pglab/pglab.pro b/pglab/pglab.pro index ec3c9b4..ed02d76 100644 --- a/pglab/pglab.pro +++ b/pglab/pglab.pro @@ -153,14 +153,16 @@ RESOURCES += \ QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWS,5.01 +LIBS += -Lc:/prog/lib/ + win32:CONFIG(release, debug|release): LIBS += -L$$OUT_PWD/../core/release/ -lcore else:win32:CONFIG(debug, debug|release): LIBS += -L$$OUT_PWD/../core/debug/ -lcore INCLUDEPATH += $$PWD/../core DEPENDPATH += $$PWD/../core -win32:CONFIG(release, debug|release): LIBS += c:/prog/lib/botand.lib -else:win32:CONFIG(debug, debug|release): LIBS += c:/prog/lib/botan.lib +win32:CONFIG(debug, debug|release): LIBS += -lbotand +else:win32:CONFIG(release, debug|release): LIBS += -lbotan win32-g++:CONFIG(release, debug|release): PRE_TARGETDEPS += $$OUT_PWD/../core/release/libcore.a