##// 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
1 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
1 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
1 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
1 NO CONTENT: file renamed from src/qchartaxiscategories.h to src/axis/qchartaxiscategories.h
@@ -6,30 +6,27 QT += core \
6 6 gui
7 7 CONFIG += debug_and_release
8 8 CONFIG(debug, debug|release):TARGET = QtCommercialChartd
9 SOURCES += axisitem.cpp \
10 axisanimationitem.cpp \
9 SOURCES += \
11 10 chartdataset.cpp \
12 11 chartpresenter.cpp \
13 12 charttheme.cpp \
14 13 domain.cpp \
15 14 qchart.cpp \
16 qchartaxis.cpp \
17 qchartaxiscategories.cpp \
18 15 qchartview.cpp \
19 16 qseries.cpp
20 PRIVATE_HEADERS += axisitem_p.h \
21 axisanimationitem_p.h \
17 PRIVATE_HEADERS += \
22 18 chartdataset_p.h \
23 19 chartitem_p.h \
24 20 chartpresenter_p.h \
25 21 charttheme_p.h \
26 22 domain_p.h
27 PUBLIC_HEADERS += qchart.h \
28 qchartaxis.h \
29 qchartaxiscategories.h \
23 PUBLIC_HEADERS += \
24 qchart.h \
30 25 qchartglobal.h \
31 26 qseries.h \
32 27 qchartview.h
28
29 include(axis/axis.pri)
33 30 include(xychart/xychart.pri)
34 31 include(linechart/linechart.pri)
35 32 include(areachart/areachart.pri)
General Comments 0
You need to be logged in to leave comments. Login now