From 0bf826e107ec3485570581cc28a8eaa009e5eeae 2012-07-30 12:13:07 From: Michal Klocek Date: 2012-07-30 12:13:07 Subject: [PATCH] Fix wrong library name in debug mode --- diff --git a/features/qtcommercialchart.prf b/features/qtcommercialchart.prf index 5602b4d..008385d 100644 --- a/features/qtcommercialchart.prf +++ b/features/qtcommercialchart.prf @@ -1,11 +1,19 @@ INCLUDEPATH += $$[QT_INSTALL_HEADERS]/QtCommercialChart CONFIG(debug, debug|release) { - mac { + + mac: { LIBS += -lQtCommercialChart_debug - } else { + } + + win32: { LIBS += -lQtCommercialChartd } + + linux: { + LIBS += -lQtCommercialChart + } + } else { LIBS += -lQtCommercialChart }