-
Notifications
You must be signed in to change notification settings - Fork 1
/
osWidget.pro
53 lines (44 loc) · 1.19 KB
/
osWidget.pro
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#-------------------------------------------------
#
# Project created by QtCreator 2014-06-19T10:25:43
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION,5)
{
QT += widgets
}
TARGET = osWidget
TEMPLATE = app
SOURCES += main.cpp\
mainwindow.cpp \
painters/performancepainter.cpp \
painters/graphpainter.cpp \
painters/painterutils.cpp \
dataQuery/dataquery.cpp \
dataQuery/cpudataquery.cpp \
painters/barspainter.cpp \
painters/graphmulticolorpainter.cpp \
widgets/cpuwidget.cpp \
widgets/performancewidget.cpp \
dataQuery/queryresource.cpp \
widgets/ramwidget.cpp \
dataQuery/ramdataquery.cpp
HEADERS += mainwindow.h \
painterutils.h \
performancewidget.h \
painters/performancepainter.h \
painters/graphpainter.h \
painters/painterutils.h \
dataQuery/dataquery.h \
dataQuery/cpudataquery.h \
painters/barspainter.h \
painters/graphmulticolorpainter.h \
widgets/cpuwidget.h \
widgets/performancewidget.h \
dataQuery/queryresource.h \
widgets/ramwidget.h \
dataQuery/ramdataquery.h
FORMS += mainwindow.ui
OTHER_FILES += \
mainpage.dox