-
Notifications
You must be signed in to change notification settings - Fork 1
/
sysviz.pro
52 lines (45 loc) · 1.04 KB
/
sysviz.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
TARGET = sysviz
MOC_DIR = .moc
OBJECTS_DIR = .obj
QT += quick
!nodqml:qtHaveModule(dqml):{
message("Building with DQml support...")
QT += dqml
}
SOURCES = \
src/main.cpp \
src/traceevent.cpp \
src/tracemodel.cpp \
src/cpufrequencymodel.cpp \
src/cpucstatemodel.cpp \
src/gpufrequencymodel.cpp \
src/threadmodel.cpp \
src/iotrafficmodel.cpp \
src/graphitem.cpp \
src/threadsliceview.cpp
HEADERS = \
src/tracemodel.h \
src/slice.h \
src/cpufrequencymodel.h \
src/cpucstatemodel.h \
src/tracetime.h \
src/gpufrequencymodel.h \
src/threadmodel.h \
src/iotrafficmodel.h \
src/graphitem.h \
src/threadsliceview.h
CONFIG -= app_bundle
CONFIG += c++11
OTHER_FILES += \
qml/main.qml \
qml/theme.js \
qml/FrequencyView.qml \
qml/RowGradient.qml \
qml/LabelBackground.qml \
qml/ViewLabel.qml \
qml/Header.qml \
qml/ThreadSlice.qml \
qml/TraceView.qml \
qml/ThreadSliceBase.qml \
qml/ThreadSliceBox.qml \
qml/ThreadSliceLabel.qml