##// END OF EJS Templates
Different file name for widget in debug build
Different file name for widget in debug build

File last commit:

r2:87da903027e1
r2:87da903027e1
Show More
widget.pro
29 lines | 505 B | text/idl | PrologLexer
TARGET = ChartWidget
TEMPLATE = lib
QT += core gui
contains(QT_MAJOR_VERSION, 5) {
QT += widgets
}
CONFIG += debug_and_release
CONFIG(debug, debug|release) {
TARGET = ChartWidgetd
}
SOURCES += \
chartwidget.cpp
HEADERS += \
chartwidget.h
include(../src/chart.pri)
OBJECTS_DIR = tmp
MOC_DIR = tmp
DEFINES += CHARTWIDGET_LIBRARY
public_headers.path = $$[QT_INSTALL_HEADERS]/Charts
public_headers.files = chartwidget.h
target.path=$$[QT_INSTALL_LIBS]
INSTALLS += target public_headers