forked from OpenDDS/OpenDDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Monitor.mpc
65 lines (61 loc) · 1.25 KB
/
Monitor.mpc
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
54
55
56
57
58
59
60
61
62
63
64
65
project(*App): dcpsexe, dcps_tcp, dcps_monitor, qt5_widgets, msvc_bigobj {
exename = monitor
exeout = $(DDS_ROOT)/bin
requires += built_in_topics
MOC_Files {
MonitorDataModel.h
RepoSelect.h
GvOptions.h
NodeOptions.h
Viewer.h
}
QRC_Files {
Monitor.qrc
}
Header_Files {
Options.h
MonitorTask.h
MonitorData.h
MonitorDataModel.h
MonitorDataStorage.h
Edge.h
Node.h
NodeGenerator.h
QosFormatter.h
TreeNode.h
GraphGenerator.h
RepoSelect.h
ui_RepoDialog.h
Viewer.h
GvOptions.h
NodeOptions.h
ui_GvOptions.h
ui_NodeOptions.h
ui_Monitor.h
}
// I would have thought that the 'automatic' setting of UIC meant that
// I didn't need to include the ui_*.h file(s) here; but it doesn't
// generate the header if its not explicit here.
Source_Files {
Options.cpp
MonitorTask.cpp
MonitorData.cpp
MonitorDataModel.cpp
MonitorDataModel_moc.cpp
MonitorDataStorage.cpp
Edge.cpp
Node.cpp
NodeGenerator.cpp
QosFormatter.cpp
Monitor_main.cpp
RepoSelect.cpp
RepoSelect_moc.cpp
GraphGenerator.cpp
Viewer.cpp
Viewer_moc.cpp
GvOptions.cpp
NodeOptions.cpp
GvOptions_moc.cpp
NodeOptions_moc.cpp
}
}