blob: 960dd59af59eef201ee6bd0255a4cf0732259511 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
TEMPLATE = app
QT += widgets
TARGET = piecharts_test
DEPENDPATH += .
INCLUDEPATH += .
QMAKE_CXXFLAGS += -std=gnu++11
DESTDIR = ./
win32: {
CONFIG += console
}
HEADERS = \
pieCharts_test.h \
../../../src/charts/PieChart.h \
../../../src/charts/DataPoint.h \
../../../src/charts/PieChartScene.h \
../../../src/charts/ChartView.h \
../../../src/charts/PieRound.h \
../../../src/charts/PieLegend.h
SOURCES = \
main.cpp \
pieCharts_test.cpp \
../../../src/charts/PieChart.cpp \
../../../src/charts/PieChartScene.cpp \
../../../src/charts/ChartView.cpp \
../../../src/charts/PieRound.cpp \
../../../src/charts/PieLegend.cpp
|