-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathattys-ep.pro
106 lines (75 loc) · 1.42 KB
/
attys-ep.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
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
unix:!macx {
MOC_DIR = moc
OBJECTS_DIR = obj
LIBS += \
-L/usr/local/lib \
-lqwt-qt5 \
-liir \
-lattyscomm \
-lbluetooth
INCLUDEPATH += /usr/include/qwt
TMAKE_CXXFLAGS += -fno-exceptions
SOURCES = \
vepplot.cpp \
dataplot.cpp \
mainwindow.cpp \
attys-ep.cpp \
stim.cpp \
audiobeep.cpp
HEADERS = \
attys-ep.h \
vepplot.h \
dataplot.h \
stim.h \
audiobeep.h \
mainwindow.h
CONFIG += qt release c++11
QT += widgets
QT += multimedia
RESOURCES = application.qrc
target.path = /usr/local/bin
INSTALLS += target
}
win32 {
MOC_DIR = moc
OBJECTS_DIR = obj
Debug:LIBS += \
-L/qwt-6.1.3/lib \
-lqwtd \
-L/iir1/Debug \
-liir_static \
-lws2_32 \
-L../attys-comm/Debug \
-lattyscomm_static
Release:LIBS += \
-L/qwt-6.1.3/lib \
-lqwt \
-L/iir1/Release \
-liir_static \
-lws2_32 \
-L../attys-comm/Release \
-lattyscomm_static
INCLUDEPATH += /iir1
INCLUDEPATH += ../attys-comm
INCLUDEPATH += /qwt-6.1.3/src
SOURCES = \
vepplot.cpp \
dataplot.cpp \
mainwindow.cpp \
attys-ep.cpp \
stim.cpp \
audiobeep.cpp
HEADERS = \
attys-ep.h \
vepplot.h \
dataplot.h \
stim.h \
audiobeep.h \
mainwindow.h
Debug:CONFIG += qt debug c++11
Release:CONFIG += qt release c++11
QT += widgets
QT += multimedia
RESOURCES = application.qrc
DEFINES += QWT_DLL
}