##// END OF EJS Templates
Refactor xyplotdata...
Refactor xyplotdata * rename xyplotdata to xyplotdomain * add proper initialization list to constructor * change xylinechartitem update interface

File last commit:

r25:9ee7e26e06fe
r25:9ee7e26e06fe
Show More
src.pro
46 lines | 1009 B | text/idl | PrologLexer
Michal Klocek
Initial project refactor, xylinecharts...
r11 TARGET = QChart
TEMPLATE = lib
QT += core \
gui
CONFIG += debug_and_release
CONFIG(debug, debug|release):TARGET = QChartd
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19
Michal Klocek
Initial project refactor, xylinecharts...
r11 SOURCES += \
Michal Klocek
Refactor current draft to fit int current design specs...
r21 xylinechart/qxychartseries.cpp \
xylinechart/xylinechartitem.cpp \
Michal Klocek
Initial project refactor, xylinecharts...
r11 xylinechart/xygrid.cpp \
Michal Klocek
Refactor xyplotdata...
r25 xylinechart/xyplotdomain.cpp \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 qchart.cpp \
axis.cpp \
qchartwidget.cpp
Michal Klocek
Initial project refactor, xylinecharts...
r11
PRIVATE_HEADERS += \
Michal Klocek
Refactor current draft to fit int current design specs...
r21 xylinechart/xylinechartitem_p.h \
Michal Klocek
Refactor xyplotdata...
r25 xylinechart/xyplotdomain_p.h \
Michal Klocek
Initial project refactor, xylinecharts...
r11 xylinechart/xygrid_p.h \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 axis_p.h
Michal Klocek
Refactor current draft to fit int current design specs...
r21
Michal Klocek
Initial project refactor, xylinecharts...
r11 PUBLIC_HEADERS += \
Michal Klocek
Refactor current draft to fit int current design specs...
r21 qchartseries.h \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 qchart.h \
qchartwidget.h \
Michal Klocek
Refactor current draft to fit int current design specs...
r21 qchartconfig.h \
Michal Klocek
Fix private header dependency...
r22 xylinechart/qxychartseries.h
Michal Klocek
Refactor current draft to fit int current design specs...
r21
Michal Klocek
Initial project refactor, xylinecharts...
r11 HEADERS += $$PUBLIC_HEADERS
HEADERS += $$PRIVATE_HEADERS
Tero Ahola
Fixed compilation on Windows
r17 INCLUDEPATH += xylinechart \
.
Michal Klocek
Initial project refactor, xylinecharts...
r11
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