##// 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 1 INCLUDEPATH += $$[QT_INSTALL_HEADERS]/Charts
2 2
3 3 contains(CHARTS, widget) {
4 CONFIG(debug, debug|release) {
5 LIBS += -lChartWidgetd
6 } else {
4 7 LIBS += -lChartWidget
8 }
5 9 }
@@ -5,6 +5,10 QT += core gui
5 5 contains(QT_MAJOR_VERSION, 5) {
6 6 QT += widgets
7 7 }
8 CONFIG += debug_and_release
9 CONFIG(debug, debug|release) {
10 TARGET = ChartWidgetd
11 }
8 12
9 13 SOURCES += \
10 14 chartwidget.cpp
General Comments 0
You need to be logged in to leave comments. Login now