##// END OF EJS Templates
Moves legend src to subdirectory
Michal Klocek -
r957:775befb8fe0b
parent child
Show More
@@ -0,0 +1,15
1 INCLUDEPATH += $$PWD
2 DEPENDPATH += $$PWD
3
4 SOURCES += \
5 $$PWD/qlegend.cpp \
6 $$PWD/legendmarker.cpp
7
8 PRIVATE_HEADERS += \
9 $$PWD/legendmarker_p.h \
10 $$PWD/legendscroller_p.h \
11 $$PWD/qlegend_p.h
12
13
14 PUBLIC_HEADERS += \
15 $$PWD/qlegend.h No newline at end of file
1 NO CONTENT: file renamed from src/legendmarker.cpp to src/legend/legendmarker.cpp
NO CONTENT: file renamed from src/legendmarker.cpp to src/legend/legendmarker.cpp
1 NO CONTENT: file renamed from src/legendmarker_p.h to src/legend/legendmarker_p.h
NO CONTENT: file renamed from src/legendmarker_p.h to src/legend/legendmarker_p.h
1 NO CONTENT: file renamed from src/legendscroller_p.h to src/legend/legendscroller_p.h
NO CONTENT: file renamed from src/legendscroller_p.h to src/legend/legendscroller_p.h
1 NO CONTENT: file renamed from src/qlegend.cpp to src/legend/qlegend.cpp
NO CONTENT: file renamed from src/qlegend.cpp to src/legend/qlegend.cpp
1 NO CONTENT: file renamed from src/qlegend.h to src/legend/qlegend.h
NO CONTENT: file renamed from src/qlegend.h to src/legend/qlegend.h
1 NO CONTENT: file renamed from src/qlegend_p.h to src/legend/qlegend_p.h
NO CONTENT: file renamed from src/qlegend_p.h to src/legend/qlegend_p.h
@@ -15,8 +15,6 SOURCES += \
15 $$PWD/qchart.cpp \
15 $$PWD/qchart.cpp \
16 $$PWD/qchartview.cpp \
16 $$PWD/qchartview.cpp \
17 $$PWD/qseries.cpp \
17 $$PWD/qseries.cpp \
18 $$PWD/qlegend.cpp \
19 $$PWD/legendmarker.cpp \
20 $$PWD/chartbackground.cpp \
18 $$PWD/chartbackground.cpp \
21 $$PWD/chart.cpp \
19 $$PWD/chart.cpp \
22 $$PWD/scroller.cpp
20 $$PWD/scroller.cpp
@@ -26,34 +24,30 PRIVATE_HEADERS += \
26 $$PWD/chartpresenter_p.h \
24 $$PWD/chartpresenter_p.h \
27 $$PWD/charttheme_p.h \
25 $$PWD/charttheme_p.h \
28 $$PWD/domain_p.h \
26 $$PWD/domain_p.h \
29 $$PWD/legendmarker_p.h \
30 $$PWD/chartbackground_p.h \
27 $$PWD/chartbackground_p.h \
31 $$PWD/chart_p.h \
28 $$PWD/chart_p.h \
32 $$PWD/chartconfig_p.h \
29 $$PWD/chartconfig_p.h \
33 $$PWD/qchart_p.h \
30 $$PWD/qchart_p.h \
34 $$PWD/qchartview_p.h \
31 $$PWD/qchartview_p.h \
35 $$PWD/scroller_p.h \
32 $$PWD/scroller_p.h \
36 $$PWD/qseries_p.h \
33 $$PWD/qseries_p.h
37 $$PWD/qlegend_p.h \
38 $$PWD/legendscroller_p.h
39 PUBLIC_HEADERS += \
34 PUBLIC_HEADERS += \
40 $$PWD/qchart.h \
35 $$PWD/qchart.h \
41 $$PWD/qchartglobal.h \
36 $$PWD/qchartglobal.h \
42 $$PWD/qseries.h \
37 $$PWD/qseries.h \
43 $$PWD/qchartview.h \
38 $$PWD/qchartview.h
44 $$PWD/qlegend.h
45
39
46 include(animations/animations.pri)
40 include(animations/animations.pri)
47 include(axis/axis.pri)
48 include(xychart/xychart.pri)
49 include(linechart/linechart.pri)
50 include(areachart/areachart.pri)
41 include(areachart/areachart.pri)
42 include(axis/axis.pri)
51 include(barchart/barchart.pri)
43 include(barchart/barchart.pri)
44 include(legend/legend.pri)
45 include(linechart/linechart.pri)
52 include(piechart/piechart.pri)
46 include(piechart/piechart.pri)
53 include(scatterseries/scatter.pri)
47 include(scatterseries/scatter.pri)
54 include(splinechart/splinechart.pri)
48 include(splinechart/splinechart.pri)
55 include(themes/themes.pri)
49 include(themes/themes.pri)
56
50 include(xychart/xychart.pri)
57
51
58 HEADERS += $$PUBLIC_HEADERS
52 HEADERS += $$PUBLIC_HEADERS
59 HEADERS += $$PRIVATE_HEADERS
53 HEADERS += $$PRIVATE_HEADERS
General Comments 0
You need to be logged in to leave comments. Login now