##// END OF EJS Templates
Fixed compilation on Windows
Tero Ahola -
r17:40f607b3c3be
parent child
Show More
@@ -1,43 +1,44
1 TARGET = QChart
1 TARGET = QChart
2 TEMPLATE = lib
2 TEMPLATE = lib
3 QT += core \
3 QT += core \
4 gui
4 gui
5 CONFIG += debug_and_release
5 CONFIG += debug_and_release
6 CONFIG(debug, debug|release):TARGET = QChartd
6 CONFIG(debug, debug|release):TARGET = QChartd
7 SOURCES += \
7 SOURCES += \
8 xylinechart/qchartwidget.cpp \
8 xylinechart/qchartwidget.cpp \
9 xylinechart/qchart.cpp \
9 xylinechart/qchart.cpp \
10 xylinechart/qxyseries.cpp \
10 xylinechart/qxyseries.cpp \
11 xylinechart/axis.cpp \
11 xylinechart/axis.cpp \
12 xylinechart/xylinechart.cpp \
12 xylinechart/xylinechart.cpp \
13 xylinechart/xygrid.cpp \
13 xylinechart/xygrid.cpp \
14 xylinechart/xyplotdata.cpp
14 xylinechart/xyplotdata.cpp
15
15
16 PRIVATE_HEADERS += \
16 PRIVATE_HEADERS += \
17 xylinechart/xylinechart_p.h \
17 xylinechart/xylinechart_p.h \
18 xylinechart/axis_p.h \
18 xylinechart/axis_p.h \
19 xylinechart/xygrid_p.h \
19 xylinechart/xygrid_p.h \
20 xylinechart/xyplotdata_p.h
20 xylinechart/xyplotdata_p.h
21
21
22 PUBLIC_HEADERS += \
22 PUBLIC_HEADERS += \
23 xylinechart/qchart.h \
23 xylinechart/qchart.h \
24 xylinechart/qxyseries.h \
24 xylinechart/qxyseries.h \
25 xylinechart/qchartwidget.h \
25 xylinechart/qchartwidget.h \
26 qchartconfig.h
26 qchartconfig.h
27
27
28 HEADERS += $$PUBLIC_HEADERS
28 HEADERS += $$PUBLIC_HEADERS
29 HEADERS += $$PRIVATE_HEADERS
29 HEADERS += $$PRIVATE_HEADERS
30
30
31 INCLUDEPATH += xylinechart
31 INCLUDEPATH += xylinechart \
32 .
32
33
33 OBJECTS_DIR = ../build/lib
34 OBJECTS_DIR = ../build/lib
34 MOC_DIR = ../build/lib
35 MOC_DIR = ../build/lib
35 UI_DIR = ../build/lib
36 UI_DIR = ../build/lib
36 RCC_DIR = ../build/lib
37 RCC_DIR = ../build/lib
37 DEFINES += QCHART_LIBRARY
38 DEFINES += QCHART_LIBRARY
38
39
39 public_headers.path = $$[QT_INSTALL_HEADERS]/QCharts
40 public_headers.path = $$[QT_INSTALL_HEADERS]/QCharts
40 public_headers.files = $$PUBLIC_HEADERS
41 public_headers.files = $$PUBLIC_HEADERS
41 target.path = $$[QT_INSTALL_LIBS]
42 target.path = $$[QT_INSTALL_LIBS]
42 INSTALLS += target \
43 INSTALLS += target \
43 public_headers
44 public_headers
General Comments 0
You need to be logged in to leave comments. Login now