##// END OF EJS Templates
Test app now adds n data series of different type
Test app now adds n data series of different type

File last commit:

r19:b231f8e5fa43
r20:1184ba596217
Show More
src.pro
45 lines | 1.0 KiB | text/idl | PrologLexer
TARGET = QChart
TEMPLATE = lib
QT += core \
gui
CONFIG += debug_and_release
CONFIG(debug, debug|release):TARGET = QChartd
SOURCES += \
xylinechart/qchartgraphicswidget.cpp \
xylinechart/qxyseries.cpp \
xylinechart/xylinechart.cpp \
xylinechart/xygrid.cpp \
xylinechart/xyplotdata.cpp \
qchart.cpp \
axis.cpp \
qchartwidget.cpp
PRIVATE_HEADERS += \
xylinechart/xylinechart_p.h \
xylinechart/xygrid_p.h \
xylinechart/xyplotdata_p.h \
axis_p.h
PUBLIC_HEADERS += \
xylinechart/qxyseries.h \
xylinechart/qchartgraphicswidget.h \
qchart.h \
qchartwidget.h \
qchartconfig.h
HEADERS += $$PUBLIC_HEADERS
HEADERS += $$PRIVATE_HEADERS
INCLUDEPATH += xylinechart \
.
OBJECTS_DIR = ../build/lib
MOC_DIR = ../build/lib
UI_DIR = ../build/lib
RCC_DIR = ../build/lib
DEFINES += QCHART_LIBRARY
public_headers.path = $$[QT_INSTALL_HEADERS]/QCharts
public_headers.files = $$PUBLIC_HEADERS
target.path = $$[QT_INSTALL_LIBS]
INSTALLS += target \
public_headers