##// END OF EJS Templates
Fix private header dependency...
Fix private header dependency * removes xyplotdata_p.h dependency

File last commit:

r22:780f6083c9a1
r22:780f6083c9a1
Show More
src.pro
46 lines | 1020 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 \
Tero Ahola
Started to refactor the API to allow integrating different plot types
r19 xylinechart/xyplotdata.cpp \
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
Fix private header dependency...
r22 xylinechart/xyplotdata_p.h \# to be removed
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