##// END OF EJS Templates
Different file name for widget in debug build
Jani Honkonen -
r2:87da903027e1
parent child
Show More
@@ -1,5 +1,9
1 INCLUDEPATH += $$[QT_INSTALL_HEADERS]/Charts
1 INCLUDEPATH += $$[QT_INSTALL_HEADERS]/Charts
2
2
3 contains(CHARTS, widget) {
3 contains(CHARTS, widget) {
4 CONFIG(debug, debug|release) {
5 LIBS += -lChartWidgetd
6 } else {
4 LIBS += -lChartWidget
7 LIBS += -lChartWidget
5 }
8 }
9 }
@@ -5,6 +5,10 QT += core gui
5 contains(QT_MAJOR_VERSION, 5) {
5 contains(QT_MAJOR_VERSION, 5) {
6 QT += widgets
6 QT += widgets
7 }
7 }
8 CONFIG += debug_and_release
9 CONFIG(debug, debug|release) {
10 TARGET = ChartWidgetd
11 }
8
12
9 SOURCES += \
13 SOURCES += \
10 chartwidget.cpp
14 chartwidget.cpp
General Comments 0
You need to be logged in to leave comments. Login now