-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTRBreader.pro
More file actions
142 lines (124 loc) · 3.87 KB
/
TRBreader.pro
File metadata and controls
142 lines (124 loc) · 3.87 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
CONFIG += cern_root #enable CERN ROOT for graph drawing
#CONFIG += speech_support #enables text_to_speech script unit - minimum Qt 5.8.0
#---CERN ROOT---
cern_root {
DEFINES += CERN_ROOT
INCLUDEPATH += $$system(root-config --incdir)
LIBS += $$system(root-config --libs) -lSpectrum #-lGeom -lGeomPainter -lGeomBuilder -lMinuit2
SOURCES += ROOT/cernrootmodule.cpp \
ROOT/GUI/arasterwindow.cpp \
ROOT/GUI/agraphwindow.cpp \
Script/histgraphinterfaces.cpp \
Common/tmpobjhubclass.cpp \
ROOT/apeakfinder.cpp
HEADERS += ROOT/cernrootmodule.h \
ROOT/GUI/arasterwindow.h \
ROOT/GUI/agraphwindow.h \
Script/histgraphinterfaces.h \
Common/tmpobjhubclass.h \
ROOT/apeakfinder.h
FORMS += ROOT/GUI/agraphwindow.ui
INCLUDEPATH += ROOT
INCLUDEPATH += ROOT/GUI
}
#-----------
#---DABC---
DEFINES += DABC
INCLUDEPATH += /home/andr/soft/trb3/dabc/include
LIBS += -L/home/andr/soft/trb3/dabc/lib/ -lDabcBase -lDabcMbs -lDabcHadaq
#-----------
#---Speech---
speech_support{
DEFINES += SPEECH
QT += texttospeech
HEADERS += Script/ainterfacetospeech.h
SOURCES += Script/ainterfacetospeech.cpp
}
#------------
QT += core gui
QT += widgets
QT += script
QT += websockets
TARGET = TRBreader
TEMPLATE = app
SOURCES += main.cpp \
GUI/mainwindow.cpp \
TRB/trb3datareader.cpp \
TRB/trb3signalextractor.cpp \
Common/channelmapper.cpp \
Common/masterconfig.cpp \
Common/ajsontools.cpp \
GUI/mainwindowconfig.cpp \
Common/afiletools.cpp \
Script/ainterfacetomessagewindow.cpp \
Script/ascriptmanager.cpp \
Script/coreinterfaces.cpp \
GUI/mainwindowscript.cpp \
GUI/ascriptwindow.cpp \
Common/ahighlighters.cpp \
Common/amessage.cpp \
Common/completingtexteditclass.cpp \
Script/ainterfacetowaveforms.cpp \
Script/ainterfacetoconfig.cpp \
Common/adispatcher.cpp \
GUI/aeditchannelsdialog.cpp \
Common/adatahub.cpp \
Script/ainterfacetodata.cpp \
Script/ainterfacetoextractor.cpp \
Script/ainterfacetowebsocket.cpp \
Common/ahldfileprocessor.cpp \
Script/ainterfacetohldfileprocessor.cpp \
Script/ainterfacetomultithread.cpp \
Net/awebsocketsession.cpp \
Net/awebsocketsessionserver.cpp \
Script/awebserverinterface.cpp \
Net/anetworkmodule.cpp \
aservermonitorwindow.cpp \
TRB/atrbruncontrol.cpp \
TRB/atrbrunsettings.cpp \
GUI/abufferdelegate.cpp
HEADERS += GUI/mainwindow.h \
TRB/trb3datareader.h \
TRB/trb3signalextractor.h \
Common/channelmapper.h \
Common/masterconfig.h \
Common/ajsontools.h \
Common/afiletools.h \
Script/ainterfacetomessagewindow.h \
Script/ascriptinterface.h \
Script/ascriptmanager.h \
Script/coreinterfaces.h \
GUI/ascriptwindow.h \
Common/ahighlighters.h \
Common/amessage.h \
Common/completingtexteditclass.h \
Script/ainterfacetowaveforms.h \
Script/ainterfacetoconfig.h \
Common/adispatcher.h \
GUI/aeditchannelsdialog.h \
Common/adatahub.h \
Script/ainterfacetodata.h \
Script/ainterfacetoextractor.h \
Script/ainterfacetowebsocket.h \
Common/ahldfileprocessor.h \
Script/ainterfacetohldfileprocessor.h \
Script/ainterfacetomultithread.h \
Script/ascriptinterfacefactory.h \
Net/awebsocketsession.h \
Net/awebsocketsessionserver.h \
Script/awebserverinterface.h \
Net/anetworkmodule.h \
aservermonitorwindow.h \
TRB/atrbruncontrol.h \
TRB/atrbrunsettings.h \
GUI/abufferdelegate.h
FORMS += GUI/mainwindow.ui \
GUI/ascriptwindow.ui \
GUI/aeditchannelsdialog.ui \
aservermonitorwindow.ui \
GUI/abufferdelegate.ui
INCLUDEPATH += Common
INCLUDEPATH += Script
INCLUDEPATH += GUI
INCLUDEPATH += TRB
INCLUDEPATH += Net