-
Notifications
You must be signed in to change notification settings - Fork 0
/
vmm-mon.pro
50 lines (38 loc) · 893 Bytes
/
vmm-mon.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
#-------------------------------------------------
#
# Project created by QtCreator 2016-07-29T18:51:52
#
#-------------------------------------------------
#Simple monitoring of VMM DAQ.
#Aimilianos Koulouris.
QT+= core gui network widgets
QMAKE_CXXFLAGS += -std=c++11
TARGET = vmm-mon
TEMPLATE = app
INCLUDEPATH += $(ROOTSYS)/include
INCLUDEPATH += src
INCLUDEPATH += src/root
INCLUDEPATH += src/struct
INCLUDEPATH += src/rsc
LIBS += -L$(ROOTSYS)/lib \
-lCore \
-lHist \
-lGpad
SOURCES +=\
src/main.cpp\
src/mainwindow.cpp\
src/root/canvas.cxx\
src/struct/chamber.cpp\
src/struct/chip.cpp
HEADERS +=\
src/mainwindow.h \
src/root/canvas.h \
src/struct/chamber.h \
src/struct/chip.h
FORMS += src/mainwindow.ui
RESOURCES += \
src/rsc/logo.qrc
unix:MOC_DIR = build
unix:OBJECTS_DIR = build
unix:RCC_DIR = build
unix:UI_DIR = build