-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVISoR-Control.pro
47 lines (37 loc) · 1.11 KB
/
VISoR-Control.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
QT += core serialport
QT -= gui
CONFIG += c++11
TARGET = VISoR-Control
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
INCLUDEPATH += $$(OPENCV_DIR)\include
LIBS += -L$$(OPENCV_DIR)\x64\vc14\lib -lopencv_world340
INCLUDEPATH += $$(LIB_PATH)\Thorlabs\Kinesis
LIBS += -L$$(LIB_PATH)\Thorlabs\Kinesis -lThorlabs.MotionControl.KCube.BrushlessMotor -lThorlabs.MotionControl.IntegratedStepperMotors
INCLUDEPATH += $$(LIB_PATH)/NI/C/include
LIBS += -L$$(LIB_PATH)/NI/C/lib64/msvc -lNIDAQmx -lnisyscfg
INCLUDEPATH += $$(LIB_PATH)\dcamsdk4\inc
LIBS += -L$$(LIB_PATH)\dcamsdk4\lib\win64 -ldcamapi
DEFINES += QT_DEPRECATED_WARNINGS
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += main.cpp \
dcam_common.cpp \
kinesisstage.cpp \
masterthread.cpp \
niworker.cpp \
obisctrl.cpp \
zaberstagectrl.cpp \
hardware.cpp \
imagewriter.cpp \
lzwcodec.cpp
HEADERS += \
dcam_common.h \
kinesisstage.h \
masterthread.h \
niworker.h \
obisctrl.h \
zaberstagectrl.h \
hardware.h \
imagewriter.h \
lzwcodec.h