##// END OF EJS Templates
Move axes files to subdir
Michal Klocek -
r478:99c805586ee4
parent child
Show More
@@ -0,0 +1,16
1 INCLUDEPATH += $$PWD
2 DEPENDPATH += $$PWD
3
4 SOURCES += \
5 $$PWD/axisanimationitem.cpp \
6 $$PWD/axisitem.cpp \
7 $$PWD/qchartaxis.cpp \
8 $$PWD/qchartaxiscategories.cpp
9
10 PRIVATE_HEADERS += \
11 $$PWD/axisanimationitem_p.h \
12 $$PWD/axisitem_p.h
13
14 PUBLIC_HEADERS += \
15 $$PWD/qchartaxis.h \
16 $$PWD/qchartaxiscategories.h No newline at end of file
1 NO CONTENT: file renamed from src/axisanimationitem.cpp to src/axis/axisanimationitem.cpp
NO CONTENT: file renamed from src/axisanimationitem.cpp to src/axis/axisanimationitem.cpp
1 NO CONTENT: file renamed from src/axisanimationitem_p.h to src/axis/axisanimationitem_p.h
NO CONTENT: file renamed from src/axisanimationitem_p.h to src/axis/axisanimationitem_p.h
1 NO CONTENT: file renamed from src/axisitem.cpp to src/axis/axisitem.cpp
NO CONTENT: file renamed from src/axisitem.cpp to src/axis/axisitem.cpp
1 NO CONTENT: file renamed from src/axisitem_p.h to src/axis/axisitem_p.h
NO CONTENT: file renamed from src/axisitem_p.h to src/axis/axisitem_p.h
1 NO CONTENT: file renamed from src/qchartaxis.cpp to src/axis/qchartaxis.cpp
NO CONTENT: file renamed from src/qchartaxis.cpp to src/axis/qchartaxis.cpp
1 NO CONTENT: file renamed from src/qchartaxis.h to src/axis/qchartaxis.h
NO CONTENT: file renamed from src/qchartaxis.h to src/axis/qchartaxis.h
1 NO CONTENT: file renamed from src/qchartaxiscategories.cpp to src/axis/qchartaxiscategories.cpp
NO CONTENT: file renamed from src/qchartaxiscategories.cpp to src/axis/qchartaxiscategories.cpp
1 NO CONTENT: file renamed from src/qchartaxiscategories.h to src/axis/qchartaxiscategories.h
NO CONTENT: file renamed from src/qchartaxiscategories.h to src/axis/qchartaxiscategories.h
@@ -6,30 +6,27 QT += core \
6 gui
6 gui
7 CONFIG += debug_and_release
7 CONFIG += debug_and_release
8 CONFIG(debug, debug|release):TARGET = QtCommercialChartd
8 CONFIG(debug, debug|release):TARGET = QtCommercialChartd
9 SOURCES += axisitem.cpp \
9 SOURCES += \
10 axisanimationitem.cpp \
11 chartdataset.cpp \
10 chartdataset.cpp \
12 chartpresenter.cpp \
11 chartpresenter.cpp \
13 charttheme.cpp \
12 charttheme.cpp \
14 domain.cpp \
13 domain.cpp \
15 qchart.cpp \
14 qchart.cpp \
16 qchartaxis.cpp \
17 qchartaxiscategories.cpp \
18 qchartview.cpp \
15 qchartview.cpp \
19 qseries.cpp
16 qseries.cpp
20 PRIVATE_HEADERS += axisitem_p.h \
17 PRIVATE_HEADERS += \
21 axisanimationitem_p.h \
22 chartdataset_p.h \
18 chartdataset_p.h \
23 chartitem_p.h \
19 chartitem_p.h \
24 chartpresenter_p.h \
20 chartpresenter_p.h \
25 charttheme_p.h \
21 charttheme_p.h \
26 domain_p.h
22 domain_p.h
27 PUBLIC_HEADERS += qchart.h \
23 PUBLIC_HEADERS += \
28 qchartaxis.h \
24 qchart.h \
29 qchartaxiscategories.h \
30 qchartglobal.h \
25 qchartglobal.h \
31 qseries.h \
26 qseries.h \
32 qchartview.h
27 qchartview.h
28
29 include(axis/axis.pri)
33 include(xychart/xychart.pri)
30 include(xychart/xychart.pri)
34 include(linechart/linechart.pri)
31 include(linechart/linechart.pri)
35 include(areachart/areachart.pri)
32 include(areachart/areachart.pri)
General Comments 0
You need to be logged in to leave comments. Login now