-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGDAQrec.pro
More file actions
44 lines (37 loc) · 1.02 KB
/
GDAQrec.pro
File metadata and controls
44 lines (37 loc) · 1.02 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
######################################################################
# Automatically generated by qmake (2.01a) Wed Apr 18 09:59:45 2007
######################################################################
TEMPLATE = app
TARGET =
DEPENDPATH += .
INCLUDEPATH += .
# Input
HEADERS += plotter.h DAQReader.h
SOURCES += main.cpp plotter.cpp DAQReader.cpp
RESOURCES += plotter.qrc
# Input
HEADERS += DAQSettingsDialog/DAQSettingsDialog.h
FORMS += DAQSettingsDialog/DAQSettingsDialog.ui
SOURCES += DAQSettingsDialog/DAQSettingsDialog.cpp
isEmpty (DAQLIB) {
DAQLIB+=comedi
}
unix:!macx {
contains(DAQLIB, nidaqmxbase) {
INCLUDEPATH += /usr/local/natinst/nidaqmxbase/include/
LIBS += -lnidaqmxbase
DEFINES += USE_NIDAQMXBASE
}
contains(DAQLIB, comedi) {
LIBS += -lcomedi
DEFINES += USE_COMEDI
}
}
macx {
contains(DAQLIB, nidaqmxbase) {
INCLUDEPATH += "/Applications/National\ Instruments/NI-DAQmx\ Base/includes/"
LIBS += -framework nidaqmxbase
LIBS += -framework nidaqmxbaselv
DEFINES += USE_NIDAQMXBASE
}
}